LinqToLdap 3.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package LinqToLdap --version 3.3.0
NuGet\Install-Package LinqToLdap -Version 3.3.0
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="LinqToLdap" Version="3.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LinqToLdap --version 3.3.0
#r "nuget: LinqToLdap, 3.3.0"
#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 LinqToLdap as a Cake Addin
#addin nuget:?package=LinqToLdap&version=3.3.0

// Install LinqToLdap as a Cake Tool
#tool nuget:?package=LinqToLdap&version=3.3.0

LINQ provider built on top of System.DirectoryServices.Protocols for querying and updating LDAP servers.

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

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.3.2 1,554 11/25/2014
3.3.1 1,219 2/2/2014
3.3.0 316 11/10/2013
3.2.0 172 8/14/2013
3.1.0 202 10/28/2012
3.0.1 72 7/10/2012
3.0.0 63 6/29/2012

New Features
         * Post event listeners have been added for add, update, and delete operations.
         * It's now possible to enable / disable tracing from the ILinqToLdapLogger interface.
         * The pooled connection factory can now be reinitialized via the IPooledConnectionFactory interface.
         * Support for dynamic OrderBy / ThenBy (and descending) in queries.
         * Support for ThenBy / ThenByDescinding in queries.
         * Support for multiple OrderBy statements matching the behavior outlined here: http://tools.ietf.org/html/rfc2891.  Previously only one OrderBy could be applied.

Bug Fixes
         * It's now possible to use properties and methods other than the "Get" variants in lambda Selects against IDirectoryAttributes.
         * ListAttributes now works with all supported IQueryable extension methods.
         * Dispose now implemented correctly for DirectroyContext to prevent exceptions from LdapConnection's finalizer.
         * ! was not being cleaned according to RFC4515.

Changes
         * CN and OU changes no longer throw an ArgumentException when using DirectoryAttributes.
         * SimpleTextLogger will no longer throw an exception for GCed TextWriters.

Breaking Changes
         * shouldCleanValue flag added to all Filter class methods.  If true this option will apply the CleanFilterValue method to the value.