我正在从客户端发送一些视图模型数据并想更新模型。我知道如何通过调用存储过程来做到这一点,但非常想知道如何使用 linq 查询来做到这一点。任何帮助将不胜感激。谢谢
[HttpPost]
public JsonResult EditEmployee(Models.Employee employee)
{
try
{
if (ModelState.IsValid)
{
using (emsCtx)
{
var employeeResults = (from q in emsCtx.Employees
where q.Id == employee.Id
//code to update the model.
);
employeeData.Employees = employeeResults;
}
return Json();
}