Don't forget add EntitySpaces operands to Where method.

In EntitySpaces  you can specify filter to load data. I've wrote the following code

EmployeesCollection collection = new EmployeesCollection();   
Collection.Query.LastName.Like("A%")   
collection.Query.Load();   

and couldn't understand why the filter doesn't work.

The reason is that functions similat to Like, LessThan return esWhereItem that will work only after they passed to esDynamicQuery.Where(Object[]()) method.
So the correct code must be

Dim collection As EmployeesCollection = New EmployeesCollection()  
collection.Query.Where(collection.Query.LastName.Like("A%"))
collection.Query.Load()    
 

posted @ Thursday, February 22, 2007 9:53 AM

Print

Comments on this entry:

No comments posted yet.

Your comment:



 (will not be displayed)


 
 
 
Please add 3 and 8 and type the answer here:
 

Live Comment Preview:

 
«October»
SunMonTueWedThuFriSat
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678