Created
February 16, 2019 01:57
-
-
Save fugaku/5ba81e3fe6fe229c37462f3ae57e615d to your computer and use it in GitHub Desktop.
EF Core Getting Started
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
| 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