Releases: zzzprojects/Eval-Expression.NET
Releases · zzzprojects/Eval-Expression.NET
v3.1.6
Download the library here
- FIXED: More Issue with Implicit conversion on Expando Object
Trial unlocked until the end of March
v3.1.5
Download the library here
- FIXED: Issue with Implicit conversion on Expando Object (ExpandoObject Expression / Brackets - NullReferenceException #68)
Trial unlocked until the end of March
v3.1.3
Download the library here
- FIXED: Many cases related to: ExpandoObject Expression / Brackets - NullReferenceException #68
Trial unlocked until the end of February
v3.1.2
Download the library here
- MODIFIED: Lower dependency version for
System.Runtime.Caching
from 4.6 to 4.5
Trial unlocked until the end of February
v3.1.1
Download the library here
- MODIFIED: Improved method resolution for global method
Trial unlocked until the end of February
v3.1.0
Download the library here
- MODIFIED: Added reference to
System.Runtime.Caching
to use the same dll as the one for .NET45
Trial unlocked until the end of February
v3.0.14
Download the library here
- ADDED:
RegisterGlobalVariable
now allow to pass a dictionary (key/value)
var dict = new Dictionary<string, object>();
dict.Add("X", 2);
EvalManager.DefaultContext.RegisterGlobalVariable(dict);
Eval.Execute("X = 3");
var x = dict["X"];
Trial unlocked until the end of February
v3.0.13
Download the library here
- FIXED: Eval.Execute Error - Oops! No applicable member has been found for the expression. #67
Trial unlocked until the end of January
v3.0.12
Download the library here
- FIXED: Issue with
LINQ
query + anonymous type parameter with casting. We now re-create the anonymous type to avoid a cast in the LINQ (which was not always supported by Entity Framework)
Trial unlocked until the end of January
v3.0.11
Download the library here
- ADDED: Significant performance enhancement when creating multiple contexts. The
RegisterType
part is only made once now
Trial unlocked until the end of January