SubSonic Bug with TOP keyword?

2019-09-02 14:31发布

The TOP keyword in the generated SQL wraps the number in brackets (I persume for SQL compact support), however this errors on my SQL 2000 server as it doesn't expect the brackets.

Example C# Code:

var doc = Logic.Document.All().FirstOrDefault(d=> d.Guid == Request.QueryString["guid"]);

Produces the following SQL error:

Line 1: Incorrect syntax near '('.

as it generates the following SQL:

 exec sp_executesql N'SELECT TOP (1) .....'

If I execute the same SQL manually without the brackets the SQL executes just fine. Is this a bug?

标签: subsonic3
1条回答
一纸荒年 Trace。
2楼-- · 2019-09-02 15:06

After futher digging around the SubSonic SourceCode I answered a resolution here:

SubSonic3: Method "FirstOrDefault" throws exception with SQL Server 2000

查看更多
登录 后发表回答