I'd love to be able to write queries that hit both users and groups. Groups have a members property that is a string[] and Users have a Groups property tat is a string[], too. If these were a List<...
I needed to be able to filter based on pwdLastSet in a query using LINQ to AD and using the SearchResult to get values instead of a DirectoryEntry made this possible. Attached is my patch for LINQ ...
I was playing around with your demo project and substituted static string text by a variable, so for example: string test = "A"; var res6 = from grp in groups ...
This implementation has a drawback which might cause queries to fail unneccesarily. To fix this I suggest that settings for PageSize and ClientTimout are added to allow search pagning against the d...
First of all I want to congratuate you on this great job. But I met some worries with getting properties which type is System.Byte[] as objectGUID property. LinqToAD throws an unhandled exception: ...
Looking at the sample, you're manually creating DirectorySources, passing in a common root. I suggest that you follow the lead of LINQ to SQL and create a DirectoryContext type which accepts the r...