I'm trying to simulate this sort of where clause using LLBLGen....
WHERE [NetXML].exist('/email[@type = "email_1"]') > 0
The query is valid SQL.
I was using the ORMSupportClasses.Expression class to attempt to build a LeftOperand, GreaterThan, and RightOperand, but it wants a FieldCore object or something. I'm not trying to compare a field, but a value in a field to static value. Is there a way to do this???
Thanks