public LocalizedString DisplayFilter(string fieldName, string storageName, dynamic formState)
 {
     return(StringFilterForm.DisplayFilter(fieldName + " " + storageName, formState, T));
 }
 public Action <IHqlExpressionFactory> GetFilterPredicate(dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(formState, "Value"));
 }
 public LocalizedString Display(string property, dynamic formState)
 {
     return(StringFilterForm.DisplayFilter(property, formState, T));
 }
 public Action <IHqlExpressionFactory> Filter(string property, dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(formState, property));
 }
 public Action <IHqlExpressionFactory> GetFilterPredicate(dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(formState, formState.VersionScope == QueryVersionScopeOptions.Latest ? "LatestValue" : "Value"));
 }
Beispiel #6
0
 public Action <IHqlExpressionFactory> GetFilterPredicate(dynamic formState)
 {
     return(StringFilterForm.GetFilterPredicate(
                formState,
                this.GetQueryVersionScope((string)formState.VersionScope).ToVersionedFieldIndexColumnName()));
 }