I am using DeepLoad.
I know that, i can use data of related tables of the master table by using DeepLoad.
cms.DeepLoad(cmList,
true, DeepLoadType.IncludeChildren, typeof(ClientMaster));
Can anyone tell me that, how can i got data in gridview?
Gridview.DataSource = cms.DeepLoad(cmList, true, DeepLoadType.IncludeChildren, typeof(ClientMaster)); will not work because DeepLoad method's return type is void.
Means, i want to know how do we have DeepLoad data back or how can we use data which are generated or filtered through DeepLoad.
I am waiting for your reply and expect it asap.
Thanks.
Joyal