Hi Everybody.
I have multiple tables .
I have created one stored procedure where I am selecting the table values.
like
create proc myProc
as
select col1, col2, col3 from table1
select cola, colb, colc from table2
select colp, colq, colr from table3
select colx, coly, colz from table4
I am using LINQ to retrieve the Data. So Using Linq I am calling the stored procedure. So I ll get the table values in the C# Code the table values.
so in my UI i have 4 gridviews.
I want split the output values into four source and bind it to the grid.
So Please give me some example and source which ll help me the best.
Thanking you in Advance
Umakanta.