Same Table name but different Schema : - LinqPad not showing the 2nd Table
Got some thing like this
dbo.Sales
crm.Sales
Both are on the same DB.
When LinqPad populates its left side pane with table names, the 2nd table name is missing.
Jay
dbo.Sales
crm.Sales
Both are on the same DB.
When LinqPad populates its left side pane with table names, the 2nd table name is missing.
Jay
Comments
The following works correctly for me: I can then go:
Probably something for Joe to look into for the next version.
CREATE TABLE [CRM].[Transactions]
CREATE TABLE [Sales].[transactions]
The 2nd one shows on the left pane, not the first one.
Thanks
Jay