We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48acbe9 commit ac96776Copy full SHA for ac96776
docs/pages/api/linq-dynamic.md
@@ -6,8 +6,6 @@ permalink: linq-dynamic
6
7
**LINQ Dynamic** in Entity Framework is supported through the [Eval-Expression.NET](http://eval-expression.net/) Library.
8
9
-It's free up to 50 characters.
10
-
11
### Predicate
12
13
All LINQ predicate methods are supported. A string expression which return a Boolean function can be used as parameter.
@@ -72,4 +70,4 @@ The Execute method is the LINQ Dynamic ultimate methods which let you evaluate a
72
70
var list = ctx.Execute<IEnumerable<int>>("Where(x => x > 2)");
73
71
var list3 = ctx.Execute("Where(x => x > y).OrderBy(x => x).ToList()", new { y = 2 });
74
75
-{% endhighlight %}
+{% endhighlight %}
0 commit comments