NReco.LambdaParser
1.1.3
Prefix Reserved
dotnet add package NReco.LambdaParser --version 1.1.3
NuGet\Install-Package NReco.LambdaParser -Version 1.1.3
<PackageReference Include="NReco.LambdaParser" Version="1.1.3" />
paket add NReco.LambdaParser --version 1.1.3
#r "nuget: NReco.LambdaParser, 1.1.3"
// Install NReco.LambdaParser as a Cake Addin #addin nuget:?package=NReco.LambdaParser&version=1.1.3 // Install NReco.LambdaParser as a Cake Tool #tool nuget:?package=NReco.LambdaParser&version=1.1.3
Runtime expressions parser and evaluator (formulas, conditions, method calls, properties/indexers etc). Builds LINQ expression tree and compiles it to lambda delegate with full support of dynamically typed variables.
Source code and examples: https://github.com/nreco/lambdaparser
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.0)
- System.Reflection.TypeExtensions (>= 4.1.0)
-
.NETStandard 2.0
- No dependencies.
NuGet packages (12)
Showing the top 5 NuGet packages that depend on NReco.LambdaParser:
Package | Downloads |
---|---|
ExtendedXmlSerializer
An extensible Xml Serializer for .NET that builds on the functionality of the classic XmlSerializer with a powerful and robust extension model. |
|
FenixAlliance.ACL.Dependencies
Application Component for the Alliance Business Suite. |
|
LJH.DO
数据访问组件,有用到批量插入、插入后返回值的功能需要安装具体数据库类型的包,如LJH.DO.SqlServer 1. netcore升级到3.1 |
|
fion.modelerp.core
ModelErp |
|
RG3.DO.Abstractions
1、【数据库RG3.DO.Abstractions】(可配置化,标准化,灵活配置,集成百度、腾讯、阿里、短信通等巨头接口,可脱离开发环境,集成nodejs中间件、统一认证中心) 2、以Rg3.开头且类继承 IService 或 IRepository的在Starup里面不用注入,案例如下 3、public class ListRepository : IRepository 4、public class ListService : IService 5、使用请到github获取 RG3.PF.WebApp.Host 6、6.0.0.77开始,nodeserice迁移到RG3.PF.PinYinScriptEngineCliWrap |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on NReco.LambdaParser:
Repository | Stars |
---|---|
ExtendedXmlSerializer/home
A configurable and eXtensible Xml serializer for .NET.
|
Version | Downloads | Last updated |
---|---|---|
1.1.3 | 26,256 | 7/12/2024 |
1.1.2 | 628 | 7/7/2024 |
1.1.1 | 44,624 | 1/4/2024 |
1.1.0 | 30,244 | 8/23/2023 |
1.0.12 | 1,795,358 | 7/8/2020 |
1.0.11 | 328,573 | 12/13/2019 |
1.0.10 | 375,305 | 8/19/2019 |
1.0.9 | 5,789 | 4/17/2019 |
1.0.8 | 223,111 | 9/10/2018 |
1.0.7 | 40,838 | 10/9/2017 |
1.0.6 | 2,317 | 7/11/2017 |
1.0.5 | 4,587 | 2/25/2017 |
1.0.4 | 3,188 | 9/15/2016 |
1.0.3 | 2,363 | 8/1/2016 |
1.0.2 | 1,663 | 7/4/2016 |
1.0.1 | 9,759 | 4/22/2016 |
1.0.0 | 1,743 | 1/29/2016 |
v.1.1.3 changes:
- fixed version mismatch #52
v.1.1.2 changes:
- use concurrent dictionary to replace lock #51
v.1.1.1 changes:
- added support for optional parameters in method calls #44 (via OptionsParamsInvokeMethod impl)
- added support for 'params' arguments in method calls #45 (via OptionsParamsInvokeMethod impl)
v.1.1.0 changes:
- variables in expressions #42 (to enable use LambdaParser.AllowVars)
- Sequence of ternary operators #43
v.1.0.12 changes:
- fixed an issue when comparison result is used as an argument in a method call #30
v.1.0.11 changes:
- removed legacy Portable targets that cause build problems in some environments
v.1.0.10 changes:
- fixed issue with 'Object must implement IConvertible' (occurs when delegate argument doesn't implement IConvertible, even if conversion is not needed)
v.1.0.9 changes:
- defined +/- operations for datetime/timespan types #17
- added ILambdaValue for accessing real values in Expression produced by LamdbaParser #16
- added option to allow single equal sign '=' for comparison #13
- added netstandard2.0 build #15
v.1.0.8 changes:
- fixed parse error of calls chain like delegate().method1().method2()
v.1.0.7 changes:
- fixed evaluation of and/or conditions (exceptions like 'AndAlso / OrElse is not defined')
v.1.0.6 changes:
- introduced IValueComparer interface for custom values comparison (https://github.com/nreco/lambdaparser/issues/10)
- default ValueComparer implementation with options: NullComparison (MinValue, Sql), SuppressErrors
- starting from this version expression cache is instance specific (was global) because calculation result may depend on IValueComparer implementation