Hello,
When moving to version 2007.1.1119.0 I discovered a problem.
I made a sample project from scratch using Northwind database just to be sure.
With previous version I used to do something like that :
Code:
EmployeesCollection employees = new EmployeesCollection();
employees.Query.Select(new string[] {"LastName"});
employees.Query.Load();
Whith the latest version it produces the following exception :
"The multi-part identifier \".LastName\" could not be bound."
The content of the es.lastQuery is as following :
SELECT .[LastName] FROM [Employees].
Note the dot preceding [lastname] witch produces the exception.
Please tell me if there is a workaround.