I have an entity named _LockEntity _and am attempting to create a predicateExpression for filtering. Based on your documentation, I think this is the right syntax.
IPredicateExpression predicateExpression = new PredicateExpression();
predicateExpression.Add(LockEntityFields.LockExpirationDate < DateTime.Now);
The problem is that no _LockEntityFields _class exists. I am sure that I missed something. Do I have to create the entitynameFields class? Could you please point me in thr right direction. Thanks...
Fred