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: docs2/pages/documentations/eval-expressions/eval-execute.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ You can specify parameter value to use in the expression from various way:
14
14
- Class Member
15
15
- Dictionary
16
16
17
-
Under the hood, the fist time an expression is executed, it's getting compiled and the delegate is stored in the memory before being returned and executed. All future call from the same expression will retrieve the delegate from the memory to optimize the performance.
17
+
Under the hood, the fist time an expression is executed, it's getting compiled and the delegate is stored in the memory before being returned and executed. All future calls from the same expression will retrieve the delegate from the memory to optimize the performance.
18
18
19
-
Even with this optimization, if you have to evaluate multiple times the same expression, by example in a for loop, we highly recommend you to use directly the delegate returning from the Compile method instead.
19
+
Even with this optimization, if you have to evaluate multiple times the same expression, for example in a for loop, we highly recommend you to use directly the delegate returning from the Compile method instead.
20
20
21
21
## Execute and return a strongly typed result
22
22
You can return the result as a strongly typed type:
Copy file name to clipboardExpand all lines: docs2/pages/faq/faq-eval-sql-net.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Bug Fixing
4
4
5
-
You find a bug when compiling? [Report it](https://github.com/zzzprojects/Eval-SQL.NET/issues) and it will be fixed usually within one business day.
5
+
You found a bug when compiling? [Report it](https://github.com/zzzprojects/Eval-SQL.NET/issues) and it will be fixed, usually within one business day.
6
6
7
7
## Namespace
8
8
@@ -26,17 +26,17 @@ All namespace support by SQL CLR are supported by Eval SQL.NET.
26
26
- System.Xml
27
27
- System.Core.dll
28
28
- System.Xml.Linq.dll
29
-
- All common namespace and extensions method can be used without specifying the fullname.
29
+
- All common namespaces and extension methods can be used without specifying the fullname.
30
30
31
31
You can see the full list [here](https://github.com/zzzprojects/Eval-SQL.NET/blob/master/src/Z.Expressions.SqlServer.Eval/EvalContext/EvalContext.RegisterDefaultAlias.cs)
32
32
33
-
Let us know if you believe we have missing some.
33
+
Let us know if you believe we missed some.
34
34
35
35
## Performance
36
36
37
37
You are worried about performance? Don't worry, Eval SQL.NET is super-fast and can evaluate over 150,000 expressions in a loop under one second and over 1,000,000 using a table!
38
38
39
-
Result highly vary depending of your SQL Server performance and expression to evaluate.
39
+
Result highly vary depending of your SQL Server performance and expressions to evaluate.
Copy file name to clipboardExpand all lines: docs2/pages/getting-started/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Definition
4
4
5
-
**Eval SQL.NET** is a library that allow to evaluate dynamically C# expression directly in T-SQL. You never used Eval SQL.NET? Don't worry, this step-by-step walkthrough will help you to understand the library.
5
+
**Eval SQL.NET** is a library that allows to evaluate dynamically C# expression directly in T-SQL. You never used Eval SQL.NET? Don't worry, this step-by-step walkthrough will help you understand the library.
6
6
7
7
Provide to your SQL Server all missing pieces like regular expression and dynamic arithmetic string evaluation.
Copy file name to clipboardExpand all lines: docs2/pages/getting-started/tutorial-introduction.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# Introduction
2
2
3
3
## Introduction
4
-
Entity Framework Extensions allow you to improve dramatically your save operations performance.
4
+
Entity Framework Extensions allows you to improve dramatically your save operations performance.
5
5
6
6
It's easy to use, and easy to customize.
7
7
8
8
## Bulk SaveChanges
9
9
The BulkSaveChanges works like SaveChanges but way faster.
10
10
11
-
BulkSaveChanges use Bulk Operations to save all entities in the Change Tracker efficiently instead of performing a database round-trip for every entity like SaveChanges does.
11
+
BulkSaveChanges uses Bulk Operations to save all entities in the Change Tracker efficiently instead of performing a database round-trip for every entity like SaveChanges does.
0 commit comments