|
|
Browse by Tags
All Tags » Filter
-
You'll probably need to post that question on the ATGen forums for specifics on their implementation, but below is how you filter EntitySpaces
Code:EmployeesCollection collection = new EmployeesCollection();
collection.LoadAll();
collection.Filter = ''LastName = 'Jones'''; Our Quick Reference should also be helpful to you.
-
I need to know how I can do the following using ES:
I have a Zero-to-Many object, will call Employee which has the Zero-to-Many Jobs.I need to be able to filter the jobs based on a property called ''EffectiveDate'' into two DataGridViews.
Basically, I would have a 'current jobs' gridview and a 'future jobs' gridview.
So far, I have two main ...
|
|
|