|
16 | 16 | <Interfaces />
|
17 | 17 | <Docs>
|
18 | 18 | <summary>Provides for immediate loading and filtering of related data.</summary>
|
19 |
| - <remarks> |
20 |
| - <format type="text/markdown"><.) |
26 |
| - |
27 |
| - The <xref:System.Data.Linq.DataLoadOptions> class provides two methods to achieve immediate loading of specified related data. The <xref:System.Data.Linq.DataLoadOptions.LoadWith%2A> method allows for immediate loading of data related to the main target. The <xref:System.Data.Linq.DataLoadOptions.AssociateWith%2A> method allows for filtering related objects. |
28 |
| - |
29 |
| -## Rules |
30 |
| - Note the following rules regarding <xref:System.Data.Linq.DataLoadOptions> usage: |
31 |
| - |
32 |
| -- Assigning a <xref:System.Data.Linq.DataLoadOptions> to a <xref:System.Data.Linq.DataContext> after the first query has been executed generates an exception. |
33 |
| - |
34 |
| -- Modifying a <xref:System.Data.Linq.DataLoadOptions> after it has been assigned to a <xref:System.Data.Linq.DataContext> generates an exception |
35 |
| - |
36 |
| -## Cycle Handling |
37 |
| - <xref:System.Data.Linq.DataLoadOptions.LoadWith%2A> and <xref:System.Data.Linq.DataLoadOptions.AssociateWith%2A> directives must not create cycles. The following represent examples of such graphs: |
38 |
| - |
39 |
| -- Example 1: Self recursive |
40 |
| - |
41 |
| - - `dlo.LoadWith<Employee>(e => e.Reports);` |
42 |
| - |
43 |
| -- Example 2: Back-pointers |
44 |
| - |
45 |
| - - `dlo.LoadWith <Customer>(c => C.Orders);` |
46 |
| - |
47 |
| - - `dlo.LoadWith <Order>(o => o.Customer);` |
48 |
| - |
49 |
| -- Example 3: Longer cycles |
50 |
| - |
51 |
| - Although this should not occur in a well-normalized model, it is possible. |
52 |
| - |
53 |
| - - `dlo.LoadWith <A>(a => a.Bs);` |
54 |
| - |
55 |
| - - `dlo.LoadWith <B>(b => b.Cs);` |
56 |
| - |
57 |
| - - `dlo.LoadWith <C>(c => c.As);` |
58 |
| - |
59 |
| -- Example 4: Self recursive subQueries |
60 |
| - |
61 |
| - - `dlo.AssociateWith<A>(a=>a.As.Where(a=>a.Id=33));` |
62 |
| - |
63 |
| -- Example 5: Longer recursive subqueries |
64 |
| - |
65 |
| - - `dlo.AssociateWith<A>(a=>a.Bs.Where(b=>b.Id==3));` |
66 |
| - |
67 |
| - - `dlo.AssociateWith<B>(b=>b.As.Where(a=>a.Id==3));` |
68 |
| - |
69 |
| - The following are some general rules that help you understand what occurs in these scenarios. |
70 |
| - |
71 |
| - **LoadWith** Each call to <xref:System.Data.Linq.DataLoadOptions.LoadWith%2A> checks whether cycles have been introduced into the graph. If there are, as in Examples 1, 2, and 3, an exception is thrown. |
72 |
| - |
73 |
| - **AssociateWith** The engine at run time does not apply the existing SubQuery clauses to the relationship inside the expression. |
74 |
| - |
75 |
| -- In Example 4, the `Where` clause is executed against all `A`, not just the ones sub-filtered by the SubQuery expression itself (because that would be recursive) |
76 |
| - |
77 |
| -- In Example 5, the first `Where` clause is applied to all the `B`s, even though there are subqueries on `B`. The second `Where` clause is applied to all the `A`s even though there are subqueries on `A`. |
78 |
| - |
79 |
| - |
80 |
| - |
81 |
| -## Examples |
82 |
| - When you retrieve `Customers` from the Northwind sample database, you can use <xref:System.Data.Linq.DataLoadOptions> to specify that `Orders` is also to be retrieved. You can even specify which subset of `Orders` to retrieve. |
83 |
| - |
84 |
| - ]]></format> |
85 |
| - </remarks> |
| 19 | + <remarks>For more information about this API, see <see href="/dotnet/fundamentals/runtime-libraries/system-data-linq-dataloadoptions">Supplemental API remarks for DataLoadOptions</see>.</remarks> |
86 | 20 | </Docs>
|
87 | 21 | <Members>
|
88 | 22 | <Member MemberName=".ctor">
|
|
123 | 57 | <Parameter Name="expression" Type="System.Linq.Expressions.LambdaExpression" />
|
124 | 58 | </Parameters>
|
125 | 59 | <Docs>
|
126 |
| - <param name="expression">Identifies the query to be used on a particular one-to-many field or property. Note the following: |
127 |
| - |
128 |
| - If the expression does not start with a field or property that represents a one-to-many relationship, an exception is thrown. |
129 |
| - |
130 |
| - If an operator other than a valid operator appears in the expression, an exception is thrown. Valid operators are as follows: |
131 |
| - |
132 |
| - Where |
133 |
| - |
134 |
| - OrderBy |
135 |
| - |
136 |
| - ThenBy |
137 |
| - |
138 |
| - OrderByDescending |
139 |
| - |
140 |
| - ThenByDescending |
141 |
| - |
| 60 | + <param name="expression">Identifies the query to be used on a particular one-to-many field or property. Note the following: |
| 61 | + |
| 62 | + If the expression does not start with a field or property that represents a one-to-many relationship, an exception is thrown. |
| 63 | + |
| 64 | + If an operator other than a valid operator appears in the expression, an exception is thrown. Valid operators are as follows: |
| 65 | + |
| 66 | + Where |
| 67 | + |
| 68 | + OrderBy |
| 69 | + |
| 70 | + ThenBy |
| 71 | + |
| 72 | + OrderByDescending |
| 73 | + |
| 74 | + ThenByDescending |
| 75 | + |
142 | 76 | Take
|
143 | 77 | </param>
|
144 | 78 | <summary>Filters the objects retrieved for a particular relationship.</summary>
|
145 | 79 | <remarks>
|
146 |
| - <format type="text/markdown"><![CDATA[ |
147 |
| - |
148 |
| -## Remarks |
149 |
| - In the following example, the inner loop iterates only over those `Orders` that have not been shipped today. |
150 |
| - |
151 |
| - |
152 |
| - |
153 |
| -## Examples |
| 80 | + <format type="text/markdown"><![CDATA[ |
| 81 | +
|
| 82 | +## Remarks |
| 83 | + In the following example, the inner loop iterates only over those `Orders` that have not been shipped today. |
| 84 | +
|
| 85 | +
|
| 86 | +
|
| 87 | +## Examples |
154 | 88 | :::code language="csharp" source="~/snippets/csharp/System.Data.Linq/DataLoadOptions/AssociateWith/program.cs" id="Snippet1":::
|
155 |
| - :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet1"::: |
156 |
| - |
| 89 | + :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet1"::: |
| 90 | +
|
157 | 91 | ]]></format>
|
158 | 92 | </remarks>
|
159 | 93 | </Docs>
|
|
181 | 115 | <Parameter Name="expression" Type="System.Linq.Expressions.Expression<System.Func<T,System.Object>>" />
|
182 | 116 | </Parameters>
|
183 | 117 | <Docs>
|
184 |
| - <typeparam name="T">The type that is queried against. |
185 |
| - |
| 118 | + <typeparam name="T">The type that is queried against. |
| 119 | + |
186 | 120 | If the type is unmapped, an exception is thrown.</typeparam>
|
187 |
| - <param name="expression">Identifies the query to be used on a particular one-to-many field or property. Note the following: |
188 |
| - |
189 |
| - If the expression does not start with a field or property that represents a one-to-many relationship, an exception is thrown. |
190 |
| - |
191 |
| - If an operator other than a valid operator appears in the expression, an exception is thrown. Valid operators are as follows: |
192 |
| - |
193 |
| - Where |
194 |
| - |
195 |
| - OrderBy |
196 |
| - |
197 |
| - ThenBy |
198 |
| - |
199 |
| - OrderByDescending |
200 |
| - |
201 |
| - ThenByDescending |
202 |
| - |
| 121 | + <param name="expression">Identifies the query to be used on a particular one-to-many field or property. Note the following: |
| 122 | + |
| 123 | + If the expression does not start with a field or property that represents a one-to-many relationship, an exception is thrown. |
| 124 | + |
| 125 | + If an operator other than a valid operator appears in the expression, an exception is thrown. Valid operators are as follows: |
| 126 | + |
| 127 | + Where |
| 128 | + |
| 129 | + OrderBy |
| 130 | + |
| 131 | + ThenBy |
| 132 | + |
| 133 | + OrderByDescending |
| 134 | + |
| 135 | + ThenByDescending |
| 136 | + |
203 | 137 | Take
|
204 | 138 | </param>
|
205 | 139 | <summary>Filters objects retrieved for a particular relationship.</summary>
|
206 | 140 | <remarks>
|
207 |
| - <format type="text/markdown"><![CDATA[ |
208 |
| - |
209 |
| -## Remarks |
210 |
| - For information about how to avoid cycles, see <xref:System.Data.Linq.DataLoadOptions>. |
211 |
| - |
212 |
| - |
213 |
| - |
214 |
| -## Examples |
215 |
| - In the following example, the inner loop iterates only over those `Orders` that have not been shipped today. |
216 |
| - |
| 141 | + <format type="text/markdown"><![CDATA[ |
| 142 | +
|
| 143 | +## Remarks |
| 144 | + For information about how to avoid cycles, see <xref:System.Data.Linq.DataLoadOptions>. |
| 145 | +
|
| 146 | +
|
| 147 | +
|
| 148 | +## Examples |
| 149 | + In the following example, the inner loop iterates only over those `Orders` that have not been shipped today. |
| 150 | +
|
217 | 151 | :::code language="csharp" source="~/snippets/csharp/System.Data.Linq/DataLoadOptions/AssociateWith/program.cs" id="Snippet1":::
|
218 |
| - :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet1"::: |
219 |
| - |
| 152 | + :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet1"::: |
| 153 | +
|
220 | 154 | ]]></format>
|
221 | 155 | </remarks>
|
222 | 156 | </Docs>
|
|
296 | 230 | <param name="expression">A lambda expression that identifies the related material.</param>
|
297 | 231 | <summary>Retrieves specified data related to the main target by using a lambda expression.</summary>
|
298 | 232 | <remarks>
|
299 |
| - <format type="text/markdown"><![CDATA[ |
300 |
| - |
301 |
| -## Remarks |
302 |
| - In the following example, all the `Orders` for all the `Customers` who are located in London are retrieved when the query is executed. As a result, successive access to the `Orders` property on a `Customer` object does not trigger a new database query. |
303 |
| - |
304 |
| - |
305 |
| - |
306 |
| -## Examples |
| 233 | + <format type="text/markdown"><![CDATA[ |
| 234 | +
|
| 235 | +## Remarks |
| 236 | + In the following example, all the `Orders` for all the `Customers` who are located in London are retrieved when the query is executed. As a result, successive access to the `Orders` property on a `Customer` object does not trigger a new database query. |
| 237 | +
|
| 238 | +
|
| 239 | +
|
| 240 | +## Examples |
307 | 241 | :::code language="csharp" source="~/snippets/csharp/System.Data.Linq/DataLoadOptions/AssociateWith/program.cs" id="Snippet2":::
|
308 |
| - :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet2"::: |
309 |
| - |
| 242 | + :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet2"::: |
| 243 | +
|
310 | 244 | ]]></format>
|
311 | 245 | </remarks>
|
312 | 246 | </Docs>
|
|
334 | 268 | <Parameter Name="expression" Type="System.Linq.Expressions.Expression<System.Func<T,System.Object>>" />
|
335 | 269 | </Parameters>
|
336 | 270 | <Docs>
|
337 |
| - <typeparam name="T">Type that is queried against. |
338 |
| - |
| 271 | + <typeparam name="T">Type that is queried against. |
| 272 | + |
339 | 273 | If this type is unmapped, an exception is thrown.</typeparam>
|
340 |
| - <param name="expression">Identifies the field or property to be retrieved. |
341 |
| - |
| 274 | + <param name="expression">Identifies the field or property to be retrieved. |
| 275 | + |
342 | 276 | If the expression does not identify a field or property that represents a one-to-one or one-to-many relationship, an exception is thrown.</param>
|
343 | 277 | <summary>Specifies which sub-objects to retrieve when a query is submitted for an object of type T.</summary>
|
344 | 278 | <remarks>
|
345 |
| - <format type="text/markdown"><![CDATA[ |
346 |
| - |
347 |
| -## Remarks |
348 |
| - You cannot specify the loading of two levels of relationships (for example, `Orders.OrderDetails`). In these scenarios you must specify two separate <xref:System.Data.Linq.DataLoadOptions.LoadWith%2A> methods. |
349 |
| - |
350 |
| - To avoid cycling, see Remarks section in <xref:System.Data.Linq.DataLoadOptions>. |
351 |
| - |
352 |
| - |
353 |
| - |
354 |
| -## Examples |
355 |
| - In the following example, all the `Orders` for all the `Customers` who are located in London are retrieved when the query is executed. As a result, successive access to the `Orders` property on a `Customer` object does not trigger a new database query. |
356 |
| - |
| 279 | + <format type="text/markdown"><![CDATA[ |
| 280 | +
|
| 281 | +## Remarks |
| 282 | + You cannot specify the loading of two levels of relationships (for example, `Orders.OrderDetails`). In these scenarios you must specify two separate <xref:System.Data.Linq.DataLoadOptions.LoadWith%2A> methods. |
| 283 | +
|
| 284 | + To avoid cycling, see Remarks section in <xref:System.Data.Linq.DataLoadOptions>. |
| 285 | +
|
| 286 | +
|
| 287 | +
|
| 288 | +## Examples |
| 289 | + In the following example, all the `Orders` for all the `Customers` who are located in London are retrieved when the query is executed. As a result, successive access to the `Orders` property on a `Customer` object does not trigger a new database query. |
| 290 | +
|
357 | 291 | :::code language="csharp" source="~/snippets/csharp/System.Data.Linq/DataLoadOptions/AssociateWith/program.cs" id="Snippet2":::
|
358 |
| - :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet2"::: |
359 |
| - |
| 292 | + :::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/system.data.linq.dataloadoptions/vb/module1.vb" id="Snippet2"::: |
| 293 | +
|
360 | 294 | ]]></format>
|
361 | 295 | </remarks>
|
362 | 296 | </Docs>
|
|
0 commit comments