Home

Duplicate Queries

In the latest build (v5.08.01), everytime I make a query the software is duplicating the generated SQL and hence I'm obtaining duplicate results. As an example:

The C# Expression:
Links.Take(5).Dump()

The Generated SQL:
SELECT TOP (5) [t0].[Id], [t0].[Uri]
FROM [linq] AS [t0]
GO

SELECT TOP (5) [t0].[Id], [t0].[Uri]
FROM [linq] AS [t0]

This returns two sets of identical results. Any ideas?

Comments

Sign In or Register to comment.