2008-09-11 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / System.Core / System.Linq / IQueryable.cs
index 41a8366ad083f3dc434893a06a4598ee9e9d99f4..c628b49f69dc2126ee3770388b72e5db1cb3a885 100644 (file)
@@ -5,10 +5,10 @@
 // distribute, sublicense, and/or sell copies of the Software, and to
 // permit persons to whom the Software is furnished to do so, subject to
 // the following conditions:
-// 
+//
 // The above copyright notice and this permission notice shall be
 // included in all copies or substantial portions of the Software.
-// 
+//
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
@@ -25,13 +25,11 @@ using System;
 using System.Collections;
 using System.Linq.Expressions;
 
-namespace System.Linq
-{
-        public interface IQueryable : IEnumerable
-        {
-                IQueryable CreateQuery (Expression expression);
-                object Execute (Expression expression);
-                Type ElementType { get; }
-                Expression Expression { get; }
-        }
+namespace System.Linq {
+
+       public interface IQueryable : IEnumerable {
+               Type ElementType { get; }
+               Expression Expression { get; }
+               IQueryProvider Provider { get; }
+       }
 }