File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs2/pages/documentations Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ var list = ctx.Where(x => "x > 2").ToList();
3333var list = ctx .Where (x => " x > y" , new { y = 2 }).ToList ();
3434
3535```
36- {% include component-try-it.html href=' https://dotnetfiddle.net/Otm0Aa ' %}
36+ [ Try it in EF6 ] ( https://dotnetfiddle.net/Otm0Aa ) | [ Try it in EF Core ] ( https://dotnetfiddle.net/1sTQwA )
3737
3838## Order && Select
3939
@@ -53,7 +53,7 @@ var list = context.Customers.OrderByDescendingDynamic(x => "x.Name").ToList();
5353var list = context .Customers .SelectDynamic (x => " x.Name" ).ToList ();
5454
5555```
56- {% include component-try-it.html href=' https://dotnetfiddle.net/OJjBgK ' %}
56+ [ Try it in EF6 ] ( https://dotnetfiddle.net/OJjBgK ) | [ Try it in EF Core ] ( https://dotnetfiddle.net/8n2Xc0 )
5757
5858## Execute
5959
@@ -69,4 +69,4 @@ var list = ctx.Execute<IEnumerable<int>>("Where(x => x > 2)");
6969var list3 = ctx .Execute (" Where(x => x > y).OrderBy(x => x).ToList()" , new { y = 2 });
7070
7171```
72- {% include component-try-it.html href=' https://dotnetfiddle.net/mwTqW7 ' %}
72+ [ Try it in EF6 ] ( https://dotnetfiddle.net/mwTqW7 ) | [ Try it in EF Core ] ( https://dotnetfiddle.net/LbU2at )
You can’t perform that action at this time.
0 commit comments