Hi,
Been dropped in the deepend a bit here @ work being almost brand new to .NET! Anyway, I just need a pointer to how to fetch a row based on a column other than the PK, i.e. I've got an object called UserEntity and just want to get the details back based on the column UseCode.
Now I'm sure the How To section makes sense when you've more experience in .NET, but
Dim filter As New PredicateExpression()
filter.Add(PredicateFactory.CompareValue(YourEntityFieldIndex.Field, ComparisonOperator.Equal, 3))
What do I use in the YourEntityFieldIndex value here?
Thanks, and take pity on me