Created
January 19, 2015 08:08
-
-
Save kumamotone/6607f0b7d8f3b2f6e520 to your computer and use it in GitHub Desktop.
IQueryable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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