Created
May 11, 2017 18:35
-
-
Save yostane/72a26ea967c6f0b762f899c8f9e62c5f 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 string Platform { get; set; } | |
| public int ReleaseYear { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment