Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created October 19, 2024 14:53
Show Gist options
  • Save wullemsb/e0ccde894e80b150072d9943a3c8c8a2 to your computer and use it in GitHub Desktop.
Save wullemsb/e0ccde894e80b150072d9943a3c8c8a2 to your computer and use it in GitHub Desktop.
internal class CategoryReadModeldMap : IEntityTypeConfiguration<CategoryReadModel>
{
public void Configure(EntityTypeBuilder<CategoryReadModel> builder)
{
builder..ToView("Categories") //Required to map model to an already mapped table
.Property(x => x.Id).HasColumnName("CategoryID");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment