You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I even tried adding Pomelo.EntityFrameworkCore.MySql.Design:
If I use the MySql.EntityFrameCore package, I can scaffold just fine. However, if I try to use the Pomelo package, only the DbContext is created, but no Entity classes. There are no errors given. A verbose log does say, "No design-time services were found", but not sure that is a real error.
Using assembly 'Transformer'.
Using startup assembly 'Transformer'.
Using application base '/Users/shawncastrianni/GIT/transformer/container/source/Transformer/bin/Debug/net8.0'.
Using working directory '/Users/shawncastrianni/GIT/transformer/container/source/Transformer'.
Using root namespace 'Transformer'.
Using project directory '/Users/shawncastrianni/GIT/transformer/container/source/Transformer/'.
Remaining arguments: .
Finding design-time services referenced by assembly 'Transformer'...
Finding design-time services referenced by assembly 'Transformer'...
No referenced design-time services were found.
Finding design-time services for provider 'Pomelo.EntityFrameworkCore.MySql'...
Using design-time services from provider 'Pomelo.EntityFrameworkCore.MySql'.
Finding IDesignTimeServices implementations in assembly 'Transformer'...
No design-time services were found.
No explicit ServerVersion was set.
ServerVersion '8.0.39-mysql' was automatically detected.
Using ServerVersion '8.0.39-mysql'.
The text was updated successfully, but these errors were encountered:
It looks like it has something to do with filtering. If I specify a database/schema in the connection string, then I can NOT use a schema prefix on my table filter.
Therefore, I do not know how to scaffold multiple schemas at one time. If I am forced to specify the schema in the connection string, then it will not be able to grab tables/views from other schemas. This seems like a bug.
dotnet 8
EF Core 8
Pomelo 8
I even tried adding Pomelo.EntityFrameworkCore.MySql.Design:
If I use the MySql.EntityFrameCore package, I can scaffold just fine. However, if I try to use the Pomelo package, only the DbContext is created, but no Entity classes. There are no errors given. A verbose log does say, "No design-time services were found", but not sure that is a real error.
The text was updated successfully, but these errors were encountered: