You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .vscode/launch.json
+28-2Lines changed: 28 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
"version": "0.2.0",
6
6
"configurations": [
7
7
{
8
-
"name": ".NET Core Launch (console)",
8
+
"name": ".NET Core Launch 1.0(console)",
9
9
"type": "coreclr",
10
10
"request": "launch",
11
11
"preLaunchTask": "build",
@@ -16,7 +16,33 @@
16
16
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
17
17
"console": "internalConsole",
18
18
"stopAtEntry": false,
19
-
"internalConsoleOptions": "openOnSessionStart"
19
+
"internalConsoleOptions": "openOnSessionStart",
20
+
"logging": {
21
+
"engineLogging": false,
22
+
"moduleLoad": false,
23
+
"exceptions": true,
24
+
"browserStdOut": false
25
+
}
26
+
},
27
+
{
28
+
"name": ".NET Core Launch 2.0(console)",
29
+
"type": "coreclr",
30
+
"request": "launch",
31
+
"preLaunchTask": "build",
32
+
// If you have changed target frameworks, make sure to update the program path.
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
Kendo.DynamicLinqCore implements server paging, filtering, sorting and aggregating to Kendo UI via Dynamic Linq for .Net Core App(1.x ~ 2.x).
7
+
Kendo.DynamicLinqCore implements server paging, filtering, sorting, grouping and aggregating to Kendo UI via Dynamic Linq for .Net Core App(1.x ~ 2.x).
8
8
9
9
## Usage
10
10
1. Add the Kendo.DynamicLinqCore NuGet package to your project.
@@ -22,7 +22,7 @@ schema: {
22
22
data:"Data",
23
23
total:"Total",
24
24
aggregates:"Aggregates",
25
-
groups:"Group",
25
+
groups:"Groups",
26
26
errors:"Errors"
27
27
}
28
28
```
@@ -37,7 +37,7 @@ dataSource: {
37
37
data:"Data",
38
38
total:"Total",
39
39
aggregates:"Aggregates",
40
-
groups:"Group",
40
+
groups:"Groups",
41
41
errors:"Errors",
42
42
...
43
43
},
@@ -72,12 +72,12 @@ dataSource: {
72
72
..... Other kendo grid code .....
73
73
```
74
74
5. Import the Kendo.DynamicLinqCore namespace.
75
-
6. Use the `ToDataSourceResult` extension method to apply paging, sortingand filtering
75
+
6. Use the `ToDataSourceResult` extension method to apply paging, sorting, filtering, grouping and aggregating.
0 commit comments