Created
June 2, 2020 12:17
-
-
Save mrstebo/058a65aee29380f0fdfdff487c3d3b1b to your computer and use it in GitHub Desktop.
entity-framework-model-mapping-1
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
| namespace EntityFrameworkExamples.Models | |
| { | |
| public class User | |
| { | |
| public long Id { get; set; } | |
| public string Username { get; set; } | |
| public string Password { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment