Ok I being a little dumb here but ....
I've created an entity class, Self Servicing, to test from a single Oracle table, but I can't work out how to select a record or records based on a column other than the PK.
The table in question has a unique index on a code column that I want to use, but I just can't seem to work out how to apply the PredicateExpression created to the entity.
Dim oFilter As PredicateExpression = New PredicateExpression()
oFilter.Add(PredicateFactory.CompareValue(UserxFieldIndex.UseCode, ComparisonOperator.Equal, txtUserName))
Also, I was under the impression from the doco that I should have access to unique constraint methods, i.e. FetchUsingUCUseCode, but this hasn't been created.
Any and all help welcome
Ta