Hello, if this has been asked before I appologize.
I have an objectdatasource and I want to bind all of the properties to a master table except a property that is a list of a different type. I want to bind that list to a details table. I can not seem to be able to do this. Can someone offer some help?
The data source is being populated with the information I am looking for. here is an example of the properties of the class.
public List<ReqInfoWorkList> lsReqInfoWorkList // This is for the details table all other properties I want on the main table
{
get { return _lsReqInfoWorkList; }
set { _lsReqInfoWorkList = value; }
}
public string AcctId { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string RoomBed { get; set; }
public string MRN { get; set; }
public string AdmisDateTime { get; set; }
public string DischDateTime { get; set; }
public string Code { get; set; }
public string DOB { get; set; }
public string AdmitType { get; set; }
public string Level1 { get; set; }
public string Level2 { get; set; }
public bool MADFComplete { get; set; }
public bool Elig { get; set; }
public bool Passport { get; set; }
Thank you for any help you can provide.