Folks,
I have a stored proc as following:
create procedure p1 as
begin
declare @n1 int
select
@n1=count(*)
from
Employee
select top 100
*
from
Employee
return @n1
end
I want to capture @n1 as well as the Employee resultset using Linq To SQL in my C# code.
I would appreciate any help.
Thanks.
Ash