-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add operations Any and Not Any #62
Comments
` /// If Enumerable have no elements or is null. /// public class NotAnyOrNull : OperationBase {
|
` /// /// If Enumerable have elements and not null. /// public class AnyAndNotNull : OperationBase {
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I use your lib and it was very usefull. I add some operations like Any or NotAny for List type.
I think it could be interesting to add this operations to your lib.
I also add method to filter by property expression. Example:
filter.By<Student>(x=> x.Director.Name, Operations.Equal, "test");
I think it provides more flexibility for the dev to use string property description or expression property.
The text was updated successfully, but these errors were encountered: