Entity Framework Core: How to modify only one field in Select projections?

后端 未结 0 1638
抹茶落季
抹茶落季 2021-02-05 10:06

I have this EF query:

var customers = dbContext.Customers();

return customers.Select(i => new Customer {
    FullName = i.FullName,
    Birthday = i.Birthday,         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题