Group: StrataFrame Users
Posts: 430,
Visits: 507
|
I am using a BO with multiple rows taken from the Database Table and want to ensure that I do not have any duplicates (On the BO) before I save.
If I was doing this against the database Table, I would issue someting like:
Select Country , Count(Country) as MyCount from MyTable Group by Country and then Test that myCount was not greater than 1
Is there any similar construct I can use for Business Object i.e. be able to search through the BO and let it throw up any duplicates.
|