Skip to content

Commit 4fc03a2

Browse files
authored
Extract long remarks (dotnet#9535)
1 parent 986d0f3 commit 4fc03a2

File tree

141 files changed

+63553
-74641
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+63553
-74641
lines changed

add/media/aboutgdip05-art10.gif

-1.09 KB
Binary file not shown.

add/media/aboutgdip05-art12.gif

-1.09 KB
Binary file not shown.

xml/System.Collections.Generic/HashSet`1.xml

+425-479
Large diffs are not rendered by default.

xml/System.Collections.Generic/List`1.xml

+5,039-5,101
Large diffs are not rendered by default.

xml/System.Collections.ObjectModel/ObservableCollection`1.xml

+70-99
Large diffs are not rendered by default.

xml/System.Data.Linq.Mapping/TableAttribute.xml

+15-45
Original file line numberDiff line numberDiff line change
@@ -22,37 +22,7 @@
2222
</Attributes>
2323
<Docs>
2424
<summary>Designates a class as an entity class that is associated with a database table.</summary>
25-
<remarks>
26-
<format type="text/markdown"><![CDATA[
27-
28-
## Remarks
29-
Use this attribute to designate a class as an entity class that is associated with a database table or view. LINQ to SQL treats classes that have the <xref:System.Data.Linq.Mapping.TableAttribute> attribute as persistent classes.
30-
31-
LINQ to SQL supports only single-table mapping. That is, an entity class must be mapped to exactly one database table, and you cannot map a database table to multiple classes at the same time.
32-
33-
You can use the <xref:System.Data.Linq.Mapping.TableAttribute.Name%2A> property of the <xref:System.Data.Linq.Mapping.TableAttribute> attribute to specify a name for the table, and you can optionally use the schema name to qualify a table name. If you do not specify a name by using the <xref:System.Data.Linq.Mapping.TableAttribute.Name%2A> property, the table name is assumed to be the same as the class name.
34-
35-
## Schema-qualified Names
36-
You can optionally use the schema name to qualify a table name. By default, the token to the left of the first period in the <xref:System.Data.Linq.Mapping.TableAttribute.Name%2A> string is considered to be the schema name. The remainder of the name is considered to be the table name. The provider quotes the table name as appropriate. For example, the LINQ to SQL provider for SQL Server makes sure that brackets are used at least where they are needed.
37-
38-
> [!NOTE]
39-
> In some cases, you must explicitly quote attributes because the SQL Server provider cannot auto-quote. The following table shows some examples.
40-
41-
|Case|Example: Identifier Name|Example: Expected String in Attributes|Otherwise…|
42-
|----------|------------------------------|--------------------------------------------|----------------|
43-
|Schema name contains a period|Schema: "A.B"<br /><br /> Table: "C"|"[A.B].C"|The first period is assumed to separate the schema name from the table name.|
44-
|Schema/Table name starts with `@`|"@SomeName"|"[@SomeName]"|Assumed to be a parameter name.|
45-
|Schema starts with `[` and ends with `]`|"[Schema.Table]"|"[[Schema].[Table]]]"|The unquoted identifier resembles a quoted identifier.|
46-
|Table starts with `[` and ends with `]`|"[Table]"|"[[Table]]]"|The unquoted identifier resembles a quoted identifier.|
47-
48-
49-
50-
## Examples
51-
:::code language="csharp" source="~/snippets/csharp/System.Data.Linq.Mapping/TableAttribute/Overview/Program.cs" id="Snippet1":::
52-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/DLinqCustomize/vb/Module1.vb" id="Snippet1":::
53-
54-
]]></format>
55-
</remarks>
25+
<remarks>For more information about this API, see <see href="/dotnet/fundamentals/runtime-libraries/system-data-linq-mapping-tableattribute">Supplemental API remarks for TableAttribute</see>.</remarks>
5626
</Docs>
5727
<Members>
5828
<Member MemberName=".ctor">
@@ -109,22 +79,22 @@
10979
<summary>Gets or sets the name of the table or view.</summary>
11080
<value>By default, the value is the same as the name of the class.</value>
11181
<remarks>
112-
<format type="text/markdown"><![CDATA[
113-
114-
## Remarks
115-
If you do not specify a name by using <xref:System.Data.Linq.Mapping.TableAttribute.Name%2A>, the table name is assumed to be the same as the class name.
116-
82+
<format type="text/markdown"><![CDATA[
83+
84+
## Remarks
85+
If you do not specify a name by using <xref:System.Data.Linq.Mapping.TableAttribute.Name%2A>, the table name is assumed to be the same as the class name.
86+
11787
> [!NOTE]
118-
> You can optionally use a schema name to qualify the table name (for example, Schema3.Table5). By default, the token to the left of the first period in the <xref:System.Data.Linq.Mapping.TableAttribute.Name%2A> string is considered to be the schema name, and the rest to be the table name.
119-
120-
In the following example, the default table name, `Customer`, is changed to `Customers`.
121-
122-
123-
124-
## Examples
88+
> You can optionally use a schema name to qualify the table name (for example, Schema3.Table5). By default, the token to the left of the first period in the <xref:System.Data.Linq.Mapping.TableAttribute.Name%2A> string is considered to be the schema name, and the rest to be the table name.
89+
90+
In the following example, the default table name, `Customer`, is changed to `Customers`.
91+
92+
93+
94+
## Examples
12595
:::code language="csharp" source="~/snippets/csharp/System.Data.Linq.Mapping/TableAttribute/Overview/Program.cs" id="Snippet1":::
126-
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/DLinqCustomize/vb/Module1.vb" id="Snippet1":::
127-
96+
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Data/DLinqCustomize/vb/Module1.vb" id="Snippet1":::
97+
12898
]]></format>
12999
</remarks>
130100
</Docs>

xml/System.Data.Linq/DataLoadOptions.xml

+85-151
Original file line numberDiff line numberDiff line change
@@ -16,73 +16,7 @@
1616
<Interfaces />
1717
<Docs>
1818
<summary>Provides for immediate loading and filtering of related data.</summary>
19-
<remarks>
20-
<format type="text/markdown"><![CDATA[
21-
22-
## Remarks
23-
24-
## General
25-
When you query for an object, you actually retrieve only the object you requested. The *related* objects are not automatically fetched at the same time. (For more information, see [Querying Across Relationships](/dotnet/framework/data/adonet/sql/linq/querying-across-relationships).)
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>
8620
</Docs>
8721
<Members>
8822
<Member MemberName=".ctor">
@@ -123,37 +57,37 @@
12357
<Parameter Name="expression" Type="System.Linq.Expressions.LambdaExpression" />
12458
</Parameters>
12559
<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+
14276
Take
14377
</param>
14478
<summary>Filters the objects retrieved for a particular relationship.</summary>
14579
<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
15488
:::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+
15791
]]></format>
15892
</remarks>
15993
</Docs>
@@ -181,42 +115,42 @@
181115
<Parameter Name="expression" Type="System.Linq.Expressions.Expression&lt;System.Func&lt;T,System.Object&gt;&gt;" />
182116
</Parameters>
183117
<Docs>
184-
<typeparam name="T">The type that is queried against.
185-
118+
<typeparam name="T">The type that is queried against.
119+
186120
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+
203137
Take
204138
</param>
205139
<summary>Filters objects retrieved for a particular relationship.</summary>
206140
<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+
217151
:::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+
220154
]]></format>
221155
</remarks>
222156
</Docs>
@@ -296,17 +230,17 @@
296230
<param name="expression">A lambda expression that identifies the related material.</param>
297231
<summary>Retrieves specified data related to the main target by using a lambda expression.</summary>
298232
<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
307241
:::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+
310244
]]></format>
311245
</remarks>
312246
</Docs>
@@ -334,29 +268,29 @@
334268
<Parameter Name="expression" Type="System.Linq.Expressions.Expression&lt;System.Func&lt;T,System.Object&gt;&gt;" />
335269
</Parameters>
336270
<Docs>
337-
<typeparam name="T">Type that is queried against.
338-
271+
<typeparam name="T">Type that is queried against.
272+
339273
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+
342276
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>
343277
<summary>Specifies which sub-objects to retrieve when a query is submitted for an object of type T.</summary>
344278
<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+
357291
:::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+
360294
]]></format>
361295
</remarks>
362296
</Docs>

0 commit comments

Comments
 (0)