I\'m developing a WCF RESTful web service with Entity Framework Code First.
I have a table Users with a lot of columns. I do this to get an specific use
Users
another way like this,
var users = from u in context.Users where u.UserId == userId select new { col1 = u.UserId, col2 = u.Watever }.ToList();