无法隐式转换类型'字符串'到' int'使用linq c#?

时间:2017-03-27 06:40:50

标签: c# linq

我已经使用linq c#&#34来编写此查询以获取标记总和; System.NotSupportedException:LINQ to Entities无法识别方法' Int32 ToInt32(System.String)'方法,并且此方法无法转换为商店表达式。"。

写下这个查询:

int Marks = 0; 
 public string maths {get;set} 
Marks = db.Users.Where(t => t.userid == t.Markstb.id).Sum(t => Convert.ToInt32(t.Markstb.maths)); // here getting error 

任何人都知道怎么做才能告诉我?

0 个答案:

没有答案