如何將字符串轉換爲使用LINQ的整數?如何使用LINQ將asp.net mvc字符串轉換爲int?
請參閱下面的內容,瞭解到目前爲止所嘗試的內容。
public ActionResult ViewStudent()
{
var std = from s in db.Students
select new StudentViewModel()
{
student_id = s.student_id,
student_name = s.student_name,
student_age =s.student_age,
student_address = s.student_address
};
var age = std.Average(s => Convert.ToInt32(s.student_age));//error
var nostd = std.Count();
ViewBag.totalstd = nostd;
ViewBag.stdage = age;
return View(std);
}
你遇到什麼問題?你沒有描述一個問題。 –
如何將字符串轉換爲int。而運行類似這樣的問題附加信息:LINQ to Entities不能識別方法'Int32 ToInt32(System.String)'方法,並且此方法無法轉換爲存儲表達式。 – BijayDhimal
請[編輯]您的問題,以提供從一開始就應該有的附加信息。 –