Skip to content

Instantly share code, notes, and snippets.

@Dillie-O
Created May 30, 2013 16:26
Show Gist options
  • Save Dillie-O/5679216 to your computer and use it in GitHub Desktop.
Save Dillie-O/5679216 to your computer and use it in GitHub Desktop.
Refactored SearchParameter object
public class SearchParameter
{
public string VariableName { get; set; }
public string WhereClause { get; set; }
public bool IsWildcardSearch { get; set; }
public bool IsRangeSearch { get; set; }
public bool AllowsMultipleValues { get; set; }
public Type ParameterType { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment