Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active December 1, 2015 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/13a0f7179bb2350fe835 to your computer and use it in GitHub Desktop.
Save justinyoo/13a0f7179bb2350fe835 to your computer and use it in GitHub Desktop.
CRM 2015 Filtering Sample
public abstract class FilterItemCollection : IFilterItemCollection
{
protected FilterItemCollection(string filename)
{
this.Initialise(filename);
}
protected Filter Filter { get; set; }
...
public bool IsValidEntity(string entityName)
{
var isValid = this.Filter
.Items
.Exists(p => p.Equals(entityName, StringComparison.InvariantCultureIgnoreCase));
return isValid;
}
protected abstract void OnInitialising(string filename);
private void Initialise(string filename)
{
this.OnInitialising(filename);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment