Skip to content

Commit 914446b

Browse files
authored
Update overview.md
1 parent c34aead commit 914446b

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

docs2/pages/getting-started/overview.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
## Definition
44

5-
65
**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.
76

87
Provide to your SQL Server all missing pieces like regular expression and dynamic arithmetic string evaluation.
@@ -14,6 +13,24 @@ SELECT SQLNET::New('x+y').ValueInt('x', 1).ValueInt('y', 2).EvalInt() as Result
1413
```
1514
{% include component-try-it.html href='http://sqlfiddle.com/#!18/9eecb/1105' %}
1615

16+
## Installing
17+
Download the <a href="/download">NuGet Package</a>
18+
19+
## Requirements
20+
21+
### Minimus Requirements
22+
23+
- SQL Server 2012+
24+
- SQL Azure
25+
- SAFE Permission (SQL CLR)
26+
27+
### SQL Server 2017
28+
- clr strict security disabled
29+
30+
### EXTERNAL_ACCESS & UNSAFE permission
31+
- database must be set TRUSTWORTHY ON
32+
33+
1734
### Find your solutions:
1835

1936
- Dynamic Arithmetic Expression

0 commit comments

Comments
 (0)