✅ .NET 8, EF Core, Fluent API - Schema definition is ignored when accessing via DbSet
HI, I would appreciate some hints where I have made the mistake. I am running an ASP.NET API. I am relying on EF Core for data accessing ORM.
The db is scaffolded with Code first approach. I have created and mapped a new Entity.
When I try to test and persist an entity, it results in error:
Error:
QQ: what am I missing making the Db operation look for the table at the default schema, instead of the specified one?
The db is scaffolded with Code first approach. I have created and mapped a new Entity.
Update-Database run properly, the schema and and table created properly. When I try to test and persist an entity, it results in error:
Error:
QQ: what am I missing making the Db operation look for the table at the default schema, instead of the specified one?


