Created
October 19, 2024 14:53
-
-
Save wullemsb/e0ccde894e80b150072d9943a3c8c8a2 to your computer and use it in GitHub Desktop.
This file contains 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
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