Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Linq 的新手,在将 SQL 查询的一部分转换为 Linq 时遇到了困难......
我的查询中的部分是我从另一列中减去一列并将其设置为新列名......你如何在 Linq 中做到这一点?
SQL部分如下: -
'[ColumnA] - [ColumnB] 实际'
提前致谢!
在您的 LINQ 查询中,您可以将查询结果投影到现有类(不是由实体框架或 LINQ to SQL 生成的类)或匿名类型,例如:
var query = from t in yourList select new { Actual = t.ColumnA - t.ColumnB };