We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1071d89 commit 359f3cdCopy full SHA for 359f3cd
HOL.md
@@ -132,7 +132,7 @@ In this task, you will discover the new strongly-typed bindings available in ASP
132
133
1. Add the following using statement.
134
135
- ````C#
+ ````C#
136
using System.Linq;
137
````
138
@@ -832,8 +832,8 @@ In this task, you will add code to properly handle database exceptions and show
832
this.db.SaveChanges();
833
}
834
catch (DbUpdateException)
835
- {
836
- var message = string.Format("A category with the name {0} already exists.", category.CategoryName);
+ {
+ var message = string.Format("A category with the name {0} already exists.", category.CategoryName);
837
this.ModelState.AddModelError("CategoryName", message);
838
839
0 commit comments