var x = from y in db.table
where y.member_id == 1
select new { y.member_id };
this statement should return only one record. & i want to retrieve that value the statement returns in a string format.
like
string m = x;
how can i do that?!