I have only 1 Model and database in the solution. When I try the execute simple query like
var list=Db.table.ToList();
Give an error like
table 'dbname.dbname.table' doesn't exist
Why not dbname.table but dbname.dbname.table? I have using mysql 8.0.22 and compatible ef
dbnamesomewhere in your entity model builder? Schema in .net is not the same as schema in MySql. In .net, postgres and mssql it is meant as a sort of namespace. In MySql a schema often refers to the db name. So it is not the same.