Skip to content

Commit 865d03d

Browse files
2 parents 6dd3418 + b4ef9ea commit 865d03d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ Royalty-Free | Yes
122122
Support & Upgrades (1 year) | Yes
123123
Learn more about the **[PRO Version](https://eval-expression.net/#pro)**
124124

125-
Starting from version 2.x, there is no longer a free limited version.
125+
- Starting from version 2.x, there is no longer a free limited version.
126+
- `LINQ` extension method is free with [EF Classic - Community](https://entityframework-classic.net/)
126127

127128
## Contribute
128129
The best way to contribute is by **spreading the word** about the library:

docs2/pages/documentations/eval-execute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ int result = Eval.Execute<int>("X + Y", expandoObject);
4040
var values = new Dictionary<string, object>() { {"X", 1}, {"Y", 2} };
4141
int result = Eval.Execute<int>("X + Y", values);
4242
```
43-
{% include component-try-it.html href='https://dotnetfiddle.net/W9TwcP' %}
43+
{% include component-try-it.html href='https://dotnetfiddle.net/xquPID' %}
4444

4545
## Execute and return an object result
4646
You can return the result as an object:

docs2/pages/documentations/register-unregister.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ You can register:
1515
- RegisterExtensionMethod(param MethodInfo[])
1616
- RegisterGlobalConstant(string key, object value)
1717
- RegisterGlobalVariable(string key, object value)
18+
- RegisterNamespace(Assembly assembly, string name)
1819
- RegisterStaticMember(param Type[])
1920
- RegisterStaticMember(param MemberInfo[])
2021
- RegisterType(param Type[])
@@ -58,6 +59,7 @@ You can unregister:
5859
- UnregisterExtensionMethod(param MethodInfo[])
5960
- UnregisterGlobalConstant(param string[] aliases)
6061
- UnregisterGlobalVariable(param string[] aliases)
62+
- UnregisterNamespace(Assembly assembly, string name)
6163
- UnregisterStaticMember(param Type[])
6264
- UnregisterStaticMember(param MemberInfo[])
6365
- UnregisterType(param Type[])

0 commit comments

Comments
 (0)