Exit sub
MVC アプリケーションと同様のアクションを使用したいのですが、c# 言語を使用しています。
入力するだけreturn
でエラーが表示されます。その義務を求めますActionResult
。
[HttpPost]
public ActionResult Create(Location location)
{
if (ModelState.IsValid)
{
Validations v = new Validations();
Boolean ValidProperties = true;
EmptyResult er;
string sResult = v.Validate100CharLength(location.Name, location.Name);
if (sResult == "Accept")
{
ValidProperties = true;
}
else
{
//What should I write here ?
//I wan to write return boolean prperty false
// When I write return it asks for the ActionResult
}
if (ValidProperties == true)
{
db.Locations.Add(location);
db.SaveChanges();
return RedirectToAction("Index");
}
}
ViewBag.OwnerId = new SelectList(
db.Employees, "Id", "FirstName", location.OwnerId);
return View(location);
}