Is it possible to use the Native language filter construction with an entity alias?
Thanks,
Phil
Use field.SetObjectAlias(...) where field is something like CustomerFields.CompanyName
Walaa wrote: Use field.SetObjectAlias(...) where field is something like CustomerFields.CompanyName
Walaa wrote:
Hmm, I'm not sure I get this. Can you post a full example?
Once I set the alias, how do I use it in the filter construction?
IPredicate filter = (CustomerFields.CompanyName.SetObjectAlias("Foo") == "Solutions Design");
Otis wrote: IPredicate filter = (CustomerFields.CompanyName.SetObjectAlias("Foo") == "Solutions Design");
Otis wrote:
Ahhhhhhhhhh, I see. Works like a charm, thanks!