Guys,
I am trying to fetchusinguniqueconstraint, the intelisense works fine, presenting me with the ConstructFilterForUCUserId() method, and the project builds fine, but at run time I get a "method not found" error.
BasketEntity basket = new BasketEntity();
basket.UserId = userid;
using (DataAccessAdapter a = new DataAccessAdapter()) {
a.FetchEntityUsingUniqueConstraint(basket, basket.ConstructFilterForUCUserId());
}
Error:
Method not found: 'SD.LLBLGen.Pro.ORMSupportClasses.IPredicateExpression Eprint.Skyline.EntityClasses.BasketEntity.ConstructFilterForUCUserId()'.
Any Ideas what is going on here?
Kindest Regards
Adam