我已经使用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
任何人都知道怎么做才能告诉我?