@@ -96,21 +96,21 @@ private WhereClause<T> Where(LambdaExpression lambda)
9696 /// </summary>
9797 /// <param name="n">The number of elements to return.</param>
9898 /// <returns>A new <see cref="SQLitePCL.pretty.Orm.TableQuery<T>"/>.</returns>
99- public LimitClause Take ( int n )
99+ public LimitClause < T > Take ( int n )
100100 {
101101 Contract . Requires ( n >= 0 ) ;
102- return new LimitClause ( table , selection , where , new List < Tuple < string , bool > > ( ) , n , null ) ;
102+ return new LimitClause < T > ( table , selection , where , new List < Tuple < string , bool > > ( ) , n , null ) ;
103103 }
104104
105105 /// <summary>
106106 /// Returns a <see cref="TableQuery<T>"/> that skips a specified number of elements in the result set and then returns the remaining elements.
107107 /// </summary>
108108 /// <param name="n">The number of elements to skip before returning the remaining elements.</param>
109109 /// <returns>A new <see cref="SQLitePCL.pretty.Orm.TableQuery<T>"/>.</returns>
110- public LimitClause Skip ( int n )
110+ public LimitClause < T > Skip ( int n )
111111 {
112112 Contract . Requires ( n >= 0 ) ;
113- return new LimitClause ( table , selection , where , new List < Tuple < string , bool > > ( ) , null , n ) ;
113+ return new LimitClause < T > ( table , selection , where , new List < Tuple < string , bool > > ( ) , null , n ) ;
114114 }
115115
116116 /// <summary>
@@ -119,7 +119,7 @@ public LimitClause Skip(int n)
119119 /// <returns>The <see cref="SQLitePCL.pretty.Orm.TableQuery<T>"/>.</returns>
120120 /// <param name="index">Index.</param>
121121 /// <returns>A new <see cref="SQLitePCL.pretty.Orm.TableQuery<T>"/>.</returns>
122- public LimitClause ElementAt ( int index )
122+ public LimitClause < T > ElementAt ( int index )
123123 {
124124 Contract . Requires ( index >= 0 ) ;
125125 return Skip ( index ) . Take ( 1 ) ;
0 commit comments