Skip to content

Instantly share code, notes, and snippets.

@bjornmicallef
Created February 27, 2020 19:38
Show Gist options
  • Save bjornmicallef/26b98d05bff8e5290b1188e7af59f297 to your computer and use it in GitHub Desktop.
Save bjornmicallef/26b98d05bff8e5290b1188e7af59f297 to your computer and use it in GitHub Desktop.
using nameof operator in entity framework two
public partial class Blog
{
public int ID_PK { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public string Content { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment