Where is a complete list of filter constructs?

Hi,

Having trouble creating filters because I cannot find a complete list of the filter constructs available to put into a filter expression's Property method. 

 

I am particularly looking for how to select a single account based on its Key(guid), but if someone could direct me to a complete list of filter constructs, then it would prevent a lot of posts down the road.

 

thanks,

David.

  • 0

    Sup David,

    There is no list.

    Sage.Peachtree.API.EntityReference<Sage.Peachtree.API.Customer> c1;

    Guid sg = new Guid(___yourshit__.Key.Guid.ToString());

    c1=Sage.Peachtree.API.EntityReference<Sage.Peachtree.API.Customer>.Create<Sage.Peachtree.API.Customer>(sg);

    Sage.Peachtree.API.Customer customerRet = CompanyObjectToAngerAccountants.Factories.CustomerFactory.Load(c1);

    and codes.

    Note:  you'd think the filters you are aware of work on all objects, but you would be wrong.  Because failure to code.

    Best practice is most of the .members are filterable on, but you know, some will fail.

    It's ok, deal with it , the SDK is fast enough it's ok.  if it's not filterable on, parse it out, it's unlikely you'll run into an active db with unreasonable performance that you can't manually filter it.