Skip to content

Instantly share code, notes, and snippets.

@yostane
Created May 11, 2017 18:35
Show Gist options
  • Select an option

  • Save yostane/72a26ea967c6f0b762f899c8f9e62c5f to your computer and use it in GitHub Desktop.

Select an option

Save yostane/72a26ea967c6f0b762f899c8f9e62c5f 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 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