假设有三个表T1,T2和T3。 T2和T3中的值与T1相关联。我想获取T1中存在但未在T2中标记为'1'的记录,T1中存在但T3中不存在的记录标记为2,如果T1中存在但T2和T3中不存在记录,则标记为为“ 3”。
答案 0 :(得分:0)
以下示例可以帮助您:
public class ProcessingController : Controller
{
ManageProcessing runManager = new ManageProcessing();
[Authorize]
public ActionResult Index()
{
RunModel rm = new RunModel
{
RunList = runManager.GetRunModelList()
};
return View(rm);
}
[HttpPost]
public ActionResult SaveReprocessData(Run runPost)
{
runManager.SaveToDataBase(runPost);
return RedirectToAction("Index", "Processing");
}
}
干杯!