private string GetQueryDebugString(ObjectStubsQuery query)
 {
     if (query == null)
     {
         return(string.Empty);
     }
     return($"{query.ClassInfo.ClassName}({query.Criteria})");
 }
 internal ObjectsCacheKey(ObjectStubsQuery query)
 {
     className     = query.ClassInfo.ClassName;
     selectDeleted = query.SelectDeleted;
 }
 public object[][] SelectData(IClientInfo clientInfo, XPDictionaryStub dictionary, ObjectStubsQuery query, CriteriaOperatorCollection properties, CriteriaOperatorCollection groupProperties, CriteriaOperator groupCriteria)
 {
     return(ExecuteWithLog(() => Channel.SelectData(clientInfo, dictionary, query, properties, groupProperties, groupCriteria),
                           $" - ClientId: {clientInfo.ClientId};  query.ClassInfo.ClassName: {query.ClassInfo.ClassName};" +
                           $"groupProperties.Count: {groupProperties?.Count}; groupsCriteria: {groupCriteria}"));
 }
Пример #4
0
 public object[][] SelectData(IClientInfo clientInfo, XPDictionaryStub dictionary, ObjectStubsQuery query, CriteriaOperatorCollection properties, CriteriaOperatorCollection groupProperties, CriteriaOperator groupCriteria)
 {
     return(Server.SelectData(clientInfo, dictionary, query, properties, groupProperties, groupCriteria));
 }