Skip to content

Instantly share code, notes, and snippets.

@BartDM
Created January 13, 2014 15:21
Show Gist options
  • Save BartDM/8402162 to your computer and use it in GitHub Desktop.
Save BartDM/8402162 to your computer and use it in GitHub Desktop.
/// <summary>
/// Custom attribute to define the field that can be seached on
/// </summary>
[System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property)]
public class SearchField : System.Attribute
{
public string[] CombinedSearchFields;
public SearchField(params string[] values)
{
this.CombinedSearchFields = values;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment