Hi people,
I've defined a custome property to an entity class :
#region Custom Entity code
// __LLBLGENPRO_USER_CODE_REGION_START CustomEntityCode
public string FullDescription
{
get
{
return this.Nom + " " + this.Prenom;
}
}
// __LLBLGENPRO_USER_CODE_REGION_END
#endregion
Is it possible to use this custom property in a PredicateExpression ?
Currently, this custom property doesn't appear in the related EntityFields class...
Thanks in advance!
Kal