Skip to content

Instantly share code, notes, and snippets.

@jonhilt
Created October 31, 2018 19:59
Show Gist options
  • Save jonhilt/9613c064d4ee0fe0626b1d042816a624 to your computer and use it in GitHub Desktop.
Save jonhilt/9613c064d4ee0fe0626b1d042816a624 to your computer and use it in GitHub Desktop.
public class OrderController : Controller {
// rest of code omitted
public IActionResult ById(string id){
var order = _dataContext.Orders.FirstOrDefault(x=>x.Id == id);
if(order == null) {
order = new Order();
}
return View(order);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment