string id = (from c in context.Users
where c.u_id == Id
select c.u_id).SingleOrDefault();
1)How i can improve the performance for the above using Linq complied query for the above. We are limited to use .NET 3.5 only.
2)What will be performance gain using a complied linq query for the above code in terms of percentage?