Skip to content

Instantly share code, notes, and snippets.

@fugaku
Last active February 16, 2019 01:56
Show Gist options
  • Select an option

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

Select an option

Save fugaku/c98e06b5a102557b7796b79e108d701b to your computer and use it in GitHub Desktop.
EF Core Getting Started
public class Blog
{
public int BlogId { get; set; }
public string Url { get; set; }
public ICollection<Post> Posts { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment