Skip to content

Instantly share code, notes, and snippets.

@mrstebo
Created June 2, 2020 12:17
Show Gist options
  • Select an option

  • Save mrstebo/058a65aee29380f0fdfdff487c3d3b1b to your computer and use it in GitHub Desktop.

Select an option

Save mrstebo/058a65aee29380f0fdfdff487c3d3b1b to your computer and use it in GitHub Desktop.
entity-framework-model-mapping-1
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