Actually, the IQueryable interface was factored into two interfaces while Beta2 release:
1. IQueryable
2. IQueryProvider
If you use Visual Studio to ‘Go to definition’ you get something that looks like this:
public interface IQueryable : IEnumerable {
Type ElementType { get; }
Expression Expression { get; }
IQueryProvider Provider { get; }
}
public interface IQueryProvider {
IQueryable CreateQuery(Expression expression);
IQueryable
object Execute(Expression expression);
TResult Execute
}
Through Linq to Amazon example you can see how it would change the Linq to Active Directory implementation by Bart.
Good resource: Linq to Everything: A List of LINQ Providers