Hello, i would like to bind a combobox to a list like bellow, and in the combobox i would like to use Designation which is a property of Regulation property of my DTO as a display memberpath, and RegulationId as a SelectedValuePath, wich is a Regulation property Too
List<RegulationDto> list = MyWebService.GetList();
Here the DTO:
public
class
RegulationDto{
public Regulation regulation;
public
List<ExceptionRegulation> regulationExceptions;
public
List<PointPassageDTO> pointsPassages;
}