Skip to content

Commit ac96776

Browse files
Update linq-dynamic.md
1 parent 48acbe9 commit ac96776

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs/pages/api/linq-dynamic.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ permalink: linq-dynamic
66

77
**LINQ Dynamic** in Entity Framework is supported through the [Eval-Expression.NET](http://eval-expression.net/) Library.
88

9-
It's free up to 50 characters.
10-
119
### Predicate
1210

1311
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
7270
var list = ctx.Execute<IEnumerable<int>>("Where(x => x > 2)");
7371
var list3 = ctx.Execute("Where(x => x > y).OrderBy(x => x).ToList()", new { y = 2 });
7472

75-
{% endhighlight %}
73+
{% endhighlight %}

0 commit comments

Comments
 (0)