NReco.LambdaParser
1.0.12
dotnet add package NReco.LambdaParser --version 1.0.12
NuGet\Install-Package NReco.LambdaParser -Version 1.0.12
<PackageReference Include="NReco.LambdaParser" Version="1.0.12" />
paket add NReco.LambdaParser --version 1.0.12
#r "nuget: NReco.LambdaParser, 1.0.12"
// Install NReco.LambdaParser as a Cake Addin
#addin nuget:?package=NReco.LambdaParser&version=1.0.12
// Install NReco.LambdaParser as a Cake Tool
#tool nuget:?package=NReco.LambdaParser&version=1.0.12
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.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.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.0.12 | 959,953 | 7/8/2020 |
1.0.11 | 239,631 | 12/13/2019 |
1.0.10 | 167,743 | 8/19/2019 |
1.0.9 | 4,581 | 4/17/2019 |
1.0.8 | 178,521 | 9/10/2018 |
1.0.7 | 38,225 | 10/9/2017 |
1.0.6 | 1,859 | 7/11/2017 |
1.0.5 | 4,168 | 2/25/2017 |
1.0.4 | 2,747 | 9/15/2016 |
1.0.3 | 1,884 | 8/1/2016 |
1.0.2 | 1,188 | 7/4/2016 |
1.0.1 | 2,151 | 4/22/2016 |
1.0.0 | 1,273 | 1/29/2016 |
Source code and examples: https://github.com/nreco/lambdaparser
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