-
-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We would like to build a dynamic specification instead of creating a specific one.
Now we have this: CompanyNameSpecification, CompanyCountrySpecification, CompanyDeletedSpecification, and so on.
It would be better to have this: LikeSpecification(c => c.Name, "name"), DeletedSpecification();
Also, we are going to have fluent API to build a filter, something like that:
Sp
.Default()
.Like(c => c.Name, "x")
.Like(c => c.Country, "y")
.Equal(c => c.Id, "guid")
.NotDeleted()
.Spec(Sp.CustomSpec())
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request