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 of FROM [dbo].[A.B.C]
To Reproduce
See above
Expected behavior
I expect the correct FROM statement to be generated.
Describe the bug
Using SQLProvider 1.3.8
Given a SQL table named
A.B.CThis f# code:
for t in ctx.Dbo.ABCProduces 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.