Last active
January 5, 2018 15:33
-
-
Save toledorobia/b6182e50a63101e10560f9c65c43a7bc to your computer and use it in GitHub Desktop.
ASP.NET MVC - Form input array
This file contains hidden or 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
<input type="text" name="ItemIds" value="1" /> | |
<input type="text" name="ItemIds" value="2" /> | |
<input type="text" name="ItemIds" value="3" /> |
This file contains hidden or 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
public class InputArrayModel | |
{ | |
public int? Id { get; set; } | |
public ICollection<int?> ItemIds { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment