public Action <IHqlExpressionFactory> GetFilterPredicate(dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(formState, "Value"));
 }
 public Action <IHqlExpressionFactory> GetFilterPredicate(dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(formState, formState.VersionScope == QueryVersionScopeOptions.Latest ? "LatestValue" : "Value"));
 }
 public Action <IHqlExpressionFactory> Filter(string property, dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(formState, property));
 }
Beispiel #4
0
 public Action <IHqlExpressionFactory> GetFilterPredicate(dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(
                formState,
                this.GetQueryVersionScope((string)formState.VersionScope).ToVersionedFieldIndexColumnName()));
 }