Exemplo n.º 1
0
 private static bool DetermineUpdatesIndex(EventBeanUpdateItem updateItem, IndexMultiKey key)
 {
     foreach (IndexedPropDesc prop in key.HashIndexedProps)
     {
         if (prop.IndexPropName.Equals(updateItem.OptionalPropertyName))
         {
             return(true);
         }
     }
     foreach (IndexedPropDesc prop in key.RangeIndexedProps)
     {
         if (prop.IndexPropName.Equals(updateItem.OptionalPropertyName))
         {
             return(true);
         }
     }
     return(false);
 }
Exemplo n.º 2
0
 public void QInfraUpdateRHSExpr(int index, EventBeanUpdateItem updateItem)
 {
 }