Skip to content

Instantly share code, notes, and snippets.

@kumamotone
Created January 19, 2015 08:08
Show Gist options
  • Save kumamotone/6607f0b7d8f3b2f6e520 to your computer and use it in GitHub Desktop.
Save kumamotone/6607f0b7d8f3b2f6e520 to your computer and use it in GitHub Desktop.
IQueryable
public interface IQueryable : IEnumerable {
Type ElementType { get; }
Expression Expression { get; }
IQueryProvider Provider { get; }
}
public interface IQueryable<T> : IEnumerable<T>, IQueryable, IEnumerable {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment