标签: c# sql linq
我需要从我的表中选择linq的最大值。
SQL:
Select MAX(number) AS Maximo FROM my_table
答案 0 :(得分:2)
YourContext.YourTable.Max(x => x.number)