System.Linq.Dynamic.Library 1.1.14

dotnet add package System.Linq.Dynamic.Library --version 1.1.14
NuGet\Install-Package System.Linq.Dynamic.Library -Version 1.1.14
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Linq.Dynamic.Library" Version="1.1.14" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Linq.Dynamic.Library --version 1.1.14
#r "nuget: System.Linq.Dynamic.Library, 1.1.14"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.Linq.Dynamic.Library as a Cake Addin
#addin nuget:?package=System.Linq.Dynamic.Library&version=1.1.14

// Install System.Linq.Dynamic.Library as a Cake Tool
#tool nuget:?package=System.Linq.Dynamic.Library&version=1.1.14

This is a branch of the Microsoft Dyamic LINQ library. It allows developers to construct LINQ queries using string expressions instead of lambda expressions.

This package is more than a simple NuGet deployment of the Dynamic Linq Library. It is a living project, and contains XML documentation with examples.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 was computed.  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. 
Silverlight sl5 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.14 5,369 4/2/2015
1.1.13 5,192 7/24/2014

1.1.14 Added support for Silverlight 5. A special thanks to jkuehner for providing this.

Added several new helper methods, including First, FirstOrDefault, Last, LastOrDefault, Single, SingleOrDefault, and Sum.

1.1.13 Added Dynamic Join Method.

Added dynamic context keywords "parent" and "root", to the existing keyword "it".  Also added symbol equivalents to those keywords ($ - it, ^ - parent, and ~ - root). Added ability to GlobalConfig to disable the context keywords.

1.1.12 Added dynamic method for GroupByMany. Support for logical operators. Better Guid and Enum Support.  Added support for shift operators.

Added static GlobalConfig class, and IDynamicLinkCustomTypeProvider to allow developers to add custom understood types to Dynamic Linq without the need to recompile.

1.1.9 Added In operator for both static inline lists, as well as a single parameter list (similiar to contains).

1.1.8 Added support for the use of Single(), SingleOrDefault(), First(), FirstOrDefault(), OrderBy(), OrderByDescending(), and Contains() in string expressions.

1.1.7 Added SelectMany Method.

Fixed bugs that only appear when using LINQ-to-Entities.

1.1.6 Added ability to access members of dynamic objects in subsequent sequences.

Fixed multi-threading issue in conjuction with "new()" expressions.

1.1.5 Added ability to select members of sub-tables.  Example: var dynamicObject = qry.Select("new (StringProperty, SubTable.Select(SubTableId) as SubTableIds)")

1.1.4 For .NET 4.0+, Select and GroupBy now take advantage of the dynamic keyword, allowing for prevervation of generic types when possible, and easier access to members of dynamic queries.

1.1.3 Added several new Methods to support base IQueryable interface, including: Single(), SingleOrDefault(), First(), FirstOrDefault() and Reverse().  Also adds dynamics verisons of those methods for 4.0+ targets, including a AsEnumerableDynamic().

Added GroupBy Method that Doesn't Require a resultSelector predicate.

Bug Fix when using Select Method to select multiple values.