hi,
Is it possible to convert more than one sql statement in linqer.
Example : select * from tablename1,
select * from tablename2;
I need to convert these two queries at a time.
Thanks.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted May 13, 2014, 1:23 AM
Please refer below link it might help you.
http://blogs.msdn.com/b/swiss_dpe_team/archive/2008/02/04/linq-to-sql-returning-multiple-result-sets.aspx
http://kishor-naik-dotnet.blogspot.in/2011/12/linq-multiple-result-set-of-procedure.html
anusha kommawarPosted May 13, 2014, 1:05 AM
Jignesh TrivediPosted May 12, 2014, 4:32 AM
hi,
I think it is not possible to get multiple result set using LINQ query (linq to SQL or Linq to entity)
you have to write individual query.
hope this will help you.