Return multiple result set to Generic List
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, My procedure return multiple result set. I need to assign it to generic list. How can i work a generic list like dataset do? I am using it in web service, so i avoid using dataset. I want the result in List<> Thankyou YPKI
-
Hi, My procedure return multiple result set. I need to assign it to generic list. How can i work a generic list like dataset do? I am using it in web service, so i avoid using dataset. I want the result in List<> Thankyou YPKI
How about returning a list of XmlDocuments. Inside each node, you can store anything you want. Maybe not the best idea, but it should work. Good luck. :thumbsup: