This is the query I'm currently using.
Dim account_lookup = From a In srvContext.CreateQuery("account")
Order By a("name")
Where (CStr(a("statecode")).Equals("Active"))
Select a.Attributes("name")
But I'd like to eliminate from the result list all records with xrx_site is NULL. I've been unable to identify empty or null fields.
Where (CStr(a("xrx_site")).ISNULL) ???
*This post is locked for comments
I have the same question (0)