Click here to Skip to main content
15,900,455 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear sir,


I am using VS 2008. I have to access my database(SQL Server 2008) with the help of LINQ in web application.

I have the following code in C# code behind file:
C#
myDBDataContext db = new myDBDataContext;
var result = db.stored_procedure_get_name(int id);
gridview.datasource= result;
gridview.databind();


This works fine but I need the following code for next purpose:
C#
Dataset ds= new dataset();
ds=result;  // the result is the value returned by LINQ (ISingleResult)
gridview.datasource= ds;
gridview.databind();

and the dbml file return the result as ISingleResult.

so can anyone tell me how to type cast ISingleResult to Dataset in C# for Visual Studio 2008
Posted
Updated 8-May-12 5:05am

1 solution

For example:
C#
((ISingleResult<customersbycityresult>)(result.ReturnValue));


More information:
http://msdn.microsoft.com/en-us/library/Bb386975(v=vs.90).aspx[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900