Skip to content

Instantly share code, notes, and snippets.

@yostane
Created May 9, 2017 20:29
Show Gist options
  • Select an option

  • Save yostane/5df97481bcd3cd37ffc211b7b1668766 to your computer and use it in GitHub Desktop.

Select an option

Save yostane/5df97481bcd3cd37ffc211b7b1668766 to your computer and use it in GitHub Desktop.
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