Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created March 17, 2019 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/868ddc03bfdb57dc1f5c153c5fa5a77a to your computer and use it in GitHub Desktop.
Save dcomartin/868ddc03bfdb57dc1f5c153c5fa5a77a to your computer and use it in GitHub Desktop.
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder
.Query<BlogPostsCount>().ToView("View_BlogPostCounts")
.Property(v => v.BlogName).HasColumnName("Name");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment