Exclude a column from a select using LINQ

前端 未结 4 1651
时光说笑
时光说笑 2020-12-20 13:08

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

4条回答
  •  旧巷少年郎
    2020-12-20 13:30

    Specify each column that you do want in your select statement:

    var users = from u in context.Users
    
            where u.UserId == userId
    
            select u.UserId, u.Watever, etc... ;
    

提交回复
热议问题