Adds extensions to Linq to offer dynamic queryables.
| PoweredSoft.DynamicLinq | ||
| PoweredSoft.DynamicLinq.Dal | ||
| PoweredSoft.DynamicLinq.Test | ||
| .gitattributes | ||
| .gitignore | ||
| PoweredSoft.DynamicLinq.sln | ||
| README.md | ||
DynamicLinq
Adds extensions to Linq to offer dynamic queryables.
Samples
Complex Query
query = query.Query(q =>
{
q.Compare("AuthorId", ConditionOperators.Equal, 1);
q.And(sq =>
{
sq.Compare("Content", ConditionOperators.Equal, "World");
sq.Or("Title", ConditionOperators.Contains, 3);
});
});