Skip to content

Commit b6aa316

Browse files
authored
Update faq-eval-sql-net.md
1 parent 2c203b1 commit b6aa316

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs2/pages/faq/faq-eval-sql-net.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Bug Fixing
44

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.
66

77
## Namespace
88

@@ -26,17 +26,17 @@ All namespace support by SQL CLR are supported by Eval SQL.NET.
2626
- System.Xml
2727
- System.Core.dll
2828
- 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.
3030

3131
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)
3232

33-
Let us know if you believe we have missing some.
33+
Let us know if you believe we missed some.
3434

3535
## Performance
3636

3737
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!
3838

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.
4040

4141

4242
```csharp
@@ -66,21 +66,21 @@ PRINT 'Duration = ' + CONVERT(VARCHAR(30), @endTime - @starttime, 114)
6666

6767
## Security
6868

69-
SQL CLR allow three type of permission:
69+
SQL CLR allows three types of permissions:
7070

7171
- SAFE
7272
- EXTERNAL_ACCESS
73-
- UNSAFE Eval SQL.NET support all types and is installed by default with SAFE permissions. Read more about [SQL CLR Permissions](https://msdn.microsoft.com/en-CA/library/ms345101.aspx)
73+
- UNSAFE Eval SQL.NET supports all types and is installed by default with SAFE permissions. Read more about [SQL CLR Permissions](https://msdn.microsoft.com/en-CA/library/ms345101.aspx)
7474
7575
## SQL Injection
7676

77-
This library allow to use parameter, so no SQL Injection is possible!
77+
This library allows to use parameter, so no SQL Injection is possible!
7878

79-
However if you build the string to evaluate as you build a dynamic SQL, then there is nothing we can do for you.
79+
However, if you build the string to evaluate as you build a dynamic SQL, then there is nothing we can do for you.
8080

8181
## Decimal throw an error!
8282

83-
In C#, decimal must be suffixed with "m" to make them valid. By default "1.1" in C# is a double which cannot be added with decimal value.
83+
In C#, decimals must be suffixed with "m" to make them valid. By default "1.1" in C# is a double which cannot be added with decimal value.
8484

8585

8686
```csharp

0 commit comments

Comments
 (0)