Hello,
I am using LLBLGen Pro 3.0, built from 26.01.2011 with a SqlServer 2000 database.
At some point, when fetching an entity collection, I am getting the following error :
SqlException occured
Line 1: Incorrect syntax near '('.
I retrieved the quey from the log files, and it is a
SELECT TOP(1) FROM ....
This select is not working in SqlServer 2000. In newer versions (2005, 200
it works fine.
The correct syntax for sqlserver 2000 should be:
SELECT TOP 1 FROM ...
Do you have any tip on how I could overcome this?
Thank you