Created
May 9, 2017 20:29
-
-
Save yostane/5df97481bcd3cd37ffc211b7b1668766 to your computer and use it in GitHub Desktop.
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
| using System.ComponentModel.DataAnnotations; | |
| namespace efcore_tuto_1 { | |
| public class VideoGame { | |
| [Key] | |
| public int Id { get; set; } | |
| public string Title { get; set; } | |
| public int Platform { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment