madhatter22 / LinqToLdap

C# LINQ provider built on top of System.DirectoryServices.Protocols for querying and updating LDAP servers.
MIT License
45 stars 23 forks source link

Get Ldap Query without executing it? #20

Open martinoss opened 3 years ago

martinoss commented 3 years ago

Is it possible, after I built a query using Linq, to get the raw ldap query without executing it?

madhatter22 commented 3 years ago

GetRequest will evaluate the query and return the resulting unexecuted SearchRequest.

martinoss commented 3 years ago

This is exactly what I was looking for. Sorry, didn't noticed there is a Wiki. Awesome library!