I have a single database that has multiple schema's. The two schemas are Bob and Bill. Both Bob and Bill contain Table1 Table2 and Table3. When I call Scaffold-DbContext it to just generate scaffold for Table1, Table2, Table3 for a single schema "Bob" which is what I thought I would run this command.
Scaffold-DbContext -t Table1 Table2 Table3 -schema "Bob"
When I run that command I get all tables in the database including Table1, Table2, Table3 from Both Schema's why is this and what can I do to just get a single schema and Table1, Table2, Table3