I can't import with Pomelo on C#, a several tables without data.
Scaffold-DbContext "'Database'" Pomelo.EntityFrameworkCore.MySql" -Table 'table1' 'table2
I have an error :
sequence contains no matching element
Do you have any solution?
I can't import with Pomelo on C#, a several tables without data.
Scaffold-DbContext "'Database'" Pomelo.EntityFrameworkCore.MySql" -Table 'table1' 'table2
I have an error :
sequence contains no matching element
Do you have any solution?
Scaffolding a database and stating individual tables works fine with Pomelo
3.2.2
:CLI:
Package Manager:
The syntax to specify multiple tables is different when using the VS Package Manager instead of the CLI (use
-Tables table1,table2,table3
instead of-t table1 -t table2 -t table3
).