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 am not sure I understand. This is not a matter of the schema having periods or commas; the schema in question is [dbo]. The wrong query is being generated. It is querying table [C] in schema [dbo.A.B] neither that schema nor that table exist in the database. It should be querying table [A.B.C] in schema [dbo].
Describe the bug
Using SQLProvider 1.3.8
Given a SQL table named
A.B.C
This f# code:
for t in ctx.Dbo.ABC
Produces this FROM statement when querying SQL Server:
FROM [dbo.A.B].[C]
instead ofFROM [dbo].[A.B.C]
To Reproduce
See above
Expected behavior
I expect the correct FROM statement to be generated.
The text was updated successfully, but these errors were encountered: