forked from dotnet/AspNetDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the Required attribute description (dotnet#213)
* Fix the Required attribute description * Fix the Required attribute description * Fix the Required attribute description
- Loading branch information
1 parent
47db9b8
commit bcee67c
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...-mvc/creating-a-more-complex-data-model-for-an-asp-net-mvc-application/samples/sample8.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[Display(Name = "Last Name")] | ||
[StringLength(50, MinimumLength=1)] | ||
public string LastName { get; set; } | ||
[Required] | ||
[StringLength(50, MinimumLength=2)] | ||
public string LastName { get; set; } |