Created
April 16, 2020 20:02
-
-
Save enisn/765b85f68bcdf276187837238f7f366a to your computer and use it in GitHub Desktop.
Challenge #1 - Solution 2 - FilteringOptionsBase.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] | |
public abstract class FilteringOptionsBaseAttribute : Attribute, IFilterableType | |
{ | |
public abstract Expression BuildExpression(Expression expressionBody, PropertyInfo property, object value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment