Categories
-
Meta
Tag Archives: Entity Framework
Index Attribute in ASP.Net Core
I was attempting to add an [Index] attribute to a field on a project I started recently that’s using ASP.Net Core 2.2. Though the number of records in the table for now is not terribly large I was just planning … Continue reading
Code First Foreign Keys With Different Names
The Entity Framework’s Code First scheme is handy way to do quick development of new websites. I recently had an issue with a foreign key relationship between a table I created and the ASP.Net Identity user table AspNetUsers. Typically, EF … Continue reading