I'm using Linq to LDAP, and was wondering if there's a way to authenticate against the AD using Linq to LDAP,
Maybe something to the effect of this
var user = context.Query<User>().FirstOrDefault(u => u.SAMAccountName == "user123" && u.Password == "1234");