Using ObjectBindingDatasource to bind to object exposing Lists, cant drag and drop fields onto repor
- by SKM
Hey Guys
Ive used the ObjectBindingDatasource to bind to a class Ive called "ReportViewModel" which contains properties such as
List Companies {get; set;}
List Managers {get; set;}
in its constructor Im just calling a method to populate with dummy data
Managers = new ReportDataRepository().GetManagers();
Companies = new…