Skip to content

Instantly share code, notes, and snippets.

@fugaku
Created February 16, 2019 01:57
Show Gist options
  • Select an option

  • Save fugaku/5ba81e3fe6fe229c37462f3ae57e615d to your computer and use it in GitHub Desktop.

Select an option

Save fugaku/5ba81e3fe6fe229c37462f3ae57e615d to your computer and use it in GitHub Desktop.
EF Core Getting Started
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
public Blog Blog { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment