|
|
Browse by Tags
All Tags » SubQuery
-
For a query that returns virtual columns (as samples below show for simple count & subquery ) - is there a way to enum the virtual column names returned?
Code:OrdersQuery ordersQuery = new OrdersQuery(''ordersQuery'');
ordersQuery.es.CountAll = true;
ordersQuery.es.CountAllAlias = ''Count'';
OrdersCollection oc = new ...
-
I have been using ES for a while but this is the first time I'm gonna use subqueries. See code below
Code:Dim esqItems As New ItemsQuery(''i'')
Dim esqCategory As New CategoryQuery(''c'')
esqItems.Where(esqItems.IsApproved.Equal(True))
esqCategory.es.Distinct = ...
|
|
|