-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathDbSkipExpression.xml
More file actions
184 lines (179 loc) · 13.5 KB
/
DbSkipExpression.xml
File metadata and controls
184 lines (179 loc) · 13.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<Type Name="DbSkipExpression" FullName="System.Data.Common.CommandTrees.DbSkipExpression">
<TypeSignature Language="C#" Value="public sealed class DbSkipExpression : System.Data.Common.CommandTrees.DbExpression" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit DbSkipExpression extends System.Data.Common.CommandTrees.DbExpression" />
<TypeSignature Language="DocId" Value="T:System.Data.Common.CommandTrees.DbSkipExpression" />
<TypeSignature Language="VB.NET" Value="Public NotInheritable Class DbSkipExpression
Inherits DbExpression" />
<TypeSignature Language="F#" Value="type DbSkipExpression = class
 inherit DbExpression" />
<TypeSignature Language="C++ CLI" Value="public ref class DbSkipExpression sealed : System::Data::Common::CommandTrees::DbExpression" />
<AssemblyInfo>
<AssemblyName>System.Data.Entity</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Data.Common.CommandTrees.DbExpression</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>Skips a specified number of elements in the input set. <see cref="T:System.Data.Common.CommandTrees.DbSkipExpression" /> can only be used after the input collection has been sorted as specified by the sort keys.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
<xref:System.Data.Common.CommandTrees.DbSkipExpression> requires its input collection to have already been sorted. The sort order is represented as the <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder> property. <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder*> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName="Accept">
<MemberSignature Language="C#" Value="public override void Accept (System.Data.Common.CommandTrees.DbExpressionVisitor visitor);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance void Accept(class System.Data.Common.CommandTrees.DbExpressionVisitor visitor) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Data.Common.CommandTrees.DbSkipExpression.Accept(System.Data.Common.CommandTrees.DbExpressionVisitor)" />
<MemberSignature Language="VB.NET" Value="Public Overrides Sub Accept (visitor As DbExpressionVisitor)" />
<MemberSignature Language="F#" Value="override this.Accept : System.Data.Common.CommandTrees.DbExpressionVisitor -> unit" Usage="dbSkipExpression.Accept visitor" />
<MemberSignature Language="C++ CLI" Value="public:
 override void Accept(System::Data::Common::CommandTrees::DbExpressionVisitor ^ visitor);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Data.Entity</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="visitor" Type="System.Data.Common.CommandTrees.DbExpressionVisitor" />
</Parameters>
<Docs>
<param name="visitor">An instance of <see cref="T:System.Data.Common.CommandTrees.DbExpressionVisitor" />.</param>
<summary>Implements the visitor pattern for expressions that do not produce a result value.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="visitor" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="Accept<TResultType>">
<MemberSignature Language="C#" Value="public override TResultType Accept<TResultType> (System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance !!TResultType Accept<TResultType>(class System.Data.Common.CommandTrees.DbExpressionVisitor`1<!!TResultType> visitor) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Data.Common.CommandTrees.DbSkipExpression.Accept``1(System.Data.Common.CommandTrees.DbExpressionVisitor{``0})" />
<MemberSignature Language="VB.NET" Value="Public Overrides Function Accept(Of TResultType) (visitor As DbExpressionVisitor(Of TResultType)) As TResultType" />
<MemberSignature Language="F#" Value="override this.Accept : System.Data.Common.CommandTrees.DbExpressionVisitor<'ResultType> -> 'ResultType" Usage="dbSkipExpression.Accept visitor" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TResultType>
 override TResultType Accept(System::Data::Common::CommandTrees::DbExpressionVisitor<TResultType> ^ visitor);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Data.Entity</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TResultType</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TResultType" />
</TypeParameters>
<Parameters>
<Parameter Name="visitor" Type="System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType>" />
</Parameters>
<Docs>
<typeparam name="TResultType">The type of the result produced by <paramref name="visitor" />.</typeparam>
<param name="visitor">An instance of a typed <see cref="T:System.Data.Common.CommandTrees.DbExpressionVisitor" /> that produces a result value of a specific type.</param>
<summary>Implements the visitor pattern for expressions that produce a result value of a specific type.</summary>
<returns>A result value of a specific type produced by <see cref="T:System.Data.Common.CommandTrees.DbExpressionVisitor" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="visitor" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="Count">
<MemberSignature Language="C#" Value="public System.Data.Common.CommandTrees.DbExpression Count { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Data.Common.CommandTrees.DbExpression Count" />
<MemberSignature Language="DocId" Value="P:System.Data.Common.CommandTrees.DbSkipExpression.Count" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Count As DbExpression" />
<MemberSignature Language="F#" Value="member this.Count : System.Data.Common.CommandTrees.DbExpression" Usage="System.Data.Common.CommandTrees.DbSkipExpression.Count" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Data::Common::CommandTrees::DbExpression ^ Count { System::Data::Common::CommandTrees::DbExpression ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Data.Entity</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Data.Common.CommandTrees.DbExpression</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets an expression that specifies the number of elements to skip from the input collection.</summary>
<value>An expression that specifies the number of elements to skip from the input collection.</value>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">The expression is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentException">The expression is not associated with the command tree of the <see cref="T:System.Data.Common.CommandTrees.DbSkipExpression" />; the expression is not either a <see cref="T:System.Data.Common.CommandTrees.DbConstantExpression" /> or a <see cref="T:System.Data.Common.CommandTrees.DbParameterReferenceExpression" />;
or the result type of the expression is not equal or promotable to a 64-bit integer type.</exception>
</Docs>
</Member>
<Member MemberName="Input">
<MemberSignature Language="C#" Value="public System.Data.Common.CommandTrees.DbExpressionBinding Input { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Data.Common.CommandTrees.DbExpressionBinding Input" />
<MemberSignature Language="DocId" Value="P:System.Data.Common.CommandTrees.DbSkipExpression.Input" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Input As DbExpressionBinding" />
<MemberSignature Language="F#" Value="member this.Input : System.Data.Common.CommandTrees.DbExpressionBinding" Usage="System.Data.Common.CommandTrees.DbSkipExpression.Input" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Data::Common::CommandTrees::DbExpressionBinding ^ Input { System::Data::Common::CommandTrees::DbExpressionBinding ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Data.Entity</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Data.Common.CommandTrees.DbExpressionBinding</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the <see cref="T:System.Data.Common.CommandTrees.DbExpressionBinding" /> that specifies the input set.</summary>
<value>The <see cref="T:System.Data.Common.CommandTrees.DbExpressionBinding" /> that specifies the input set.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SortOrder">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> SortOrder { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IList`1<class System.Data.Common.CommandTrees.DbSortClause> SortOrder" />
<MemberSignature Language="DocId" Value="P:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property SortOrder As IList(Of DbSortClause)" />
<MemberSignature Language="F#" Value="member this.SortOrder : System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause>" Usage="System.Data.Common.CommandTrees.DbSkipExpression.SortOrder" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Collections::Generic::IList<System::Data::Common::CommandTrees::DbSortClause ^> ^ SortOrder { System::Collections::Generic::IList<System::Data::Common::CommandTrees::DbSortClause ^> ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Data.Entity</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets a <see cref="T:System.Data.Common.CommandTrees.DbSortClause" /> list that defines the sort order.</summary>
<value>A <see cref="T:System.Data.Common.CommandTrees.DbSortClause" /> list that defines the sort order.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
<xref:System.Data.Common.CommandTrees.DbSkipExpression> requires its input collection to have already been sorted. The sort order is represented as the <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder> property. <xref:System.Data.Common.CommandTrees.DbSkipExpression.SortOrder*> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>