BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
public class WorkOrderDto:BaseDto{
public WorkOrderDto() {
BOM = new List<BillOfMaterialDto>();
}
//more propertys
public ICollection<BillOfMaterialDto> BOM {get;set;}
}
public class BillOfMaterialDto :BaseDto {
// more propertys
}
As you can see i have a WorkOrder with a one to many relation to BillOMaterialDto
How can i set this in the DataSet for reporting?
Thanks in advance
Peter
Hi,
that's exacltly what i'm looking for.
Another small question, what is the reasoen for the Serializable Attribute?
Thanks again
Peter
Hi,
a very good Explanation.
You can close these request.
Thanks a lot
Peter