Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions xml/System.Data.Common.CommandTrees/DbBinaryExpression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its left expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left%2A> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its left expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Left*> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.

]]></format>
</remarks>
Expand Down Expand Up @@ -87,7 +87,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its right expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right%2A> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right> property is set. For example, <xref:System.Data.Common.CommandTrees.DbUnionAllExpression> requires that its right expression has a collection result type, while <xref:System.Data.Common.CommandTrees.DbAndExpression> requires a Boolean result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbBinaryExpression.Right*> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.

]]></format>
</remarks>
Expand Down
20 changes: 10 additions & 10 deletions xml/System.Data.Common.CommandTrees/DbExpressionVisitor`1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<typeparam name="TResultType">The type of the result produced by the visitor.</typeparam>
<summary>Defines the basic functionality that should be implemented by visitors that return a result value of a specific type.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Data.Common.CommandTrees.DbExpressionVisitor%601> is an abstract class that describes expression traversal.
<format type="text/markdown"><![CDATA[

## Remarks
The <xref:System.Data.Common.CommandTrees.DbExpressionVisitor`1> is an abstract class that describes expression traversal.

]]></format>
</remarks>
</Docs>
Expand Down Expand Up @@ -425,11 +425,11 @@
<summary>When overridden in a derived class, handles any expression of an unrecognized type.</summary>
<returns>A result value of a specific type.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This method is called when an expression of an otherwise unrecognized type is encountered.
<format type="text/markdown"><![CDATA[

## Remarks
This method is called when an expression of an otherwise unrecognized type is encountered.

]]></format>
</remarks>
</Docs>
Expand Down
10 changes: 5 additions & 5 deletions xml/System.Data.Common.CommandTrees/DbFunctionCommandTree.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@
<summary>Gets the expected result type for the function's first result set.</summary>
<value>The expected result type for the function's first result set.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The result shape must be a collection of rows. The <xref:System.Data.Metadata.Edm.RowType.Properties%2A> within a row indicate the expected type for columns with the corresponding names. The result type does not constrain the order of columns.
<format type="text/markdown"><![CDATA[

## Remarks
The result shape must be a collection of rows. The <xref:System.Data.Metadata.Edm.RowType.Properties*> within a row indicate the expected type for columns with the corresponding names. The result type does not constrain the order of columns.

]]></format>
</remarks>
</Docs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
A <xref:System.Data.Common.CommandTrees.DbLimitExpression> can be applied to any <xref:System.Data.Common.CommandTrees.DbExpression> with a collection result type, including <xref:System.Data.Common.CommandTrees.DbSkipExpression>. <xref:System.Data.Common.CommandTrees.DbLimitExpression> provides the equivalent of the Top operation. It does not require an ordering operation to have been performed on its input. It has two `Expression` properties, <xref:System.Data.Common.CommandTrees.DbLimitExpression.Argument%2A> and <xref:System.Data.Common.CommandTrees.DbLimitExpression.Limit%2A>, that specify the collection and the number of rows to return respectively. <xref:System.Data.Common.CommandTrees.DbLimitExpression> also has a `Boolean` <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies> property that controls whether rows equal in rank to the final row are returned. <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies%2A> defaults to `false`.
A <xref:System.Data.Common.CommandTrees.DbLimitExpression> can be applied to any <xref:System.Data.Common.CommandTrees.DbExpression> with a collection result type, including <xref:System.Data.Common.CommandTrees.DbSkipExpression>. <xref:System.Data.Common.CommandTrees.DbLimitExpression> provides the equivalent of the Top operation. It does not require an ordering operation to have been performed on its input. It has two `Expression` properties, <xref:System.Data.Common.CommandTrees.DbLimitExpression.Argument*> and <xref:System.Data.Common.CommandTrees.DbLimitExpression.Limit*>, that specify the collection and the number of rows to return respectively. <xref:System.Data.Common.CommandTrees.DbLimitExpression> also has a `Boolean` <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies> property that controls whether rows equal in rank to the final row are returned. <xref:System.Data.Common.CommandTrees.DbLimitExpression.WithTies*> defaults to `false`.

]]></format>
</remarks>
Expand Down
4 changes: 2 additions & 2 deletions xml/System.Data.Common.CommandTrees/DbSkipExpression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<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%2A> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
<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>
Expand Down Expand Up @@ -174,7 +174,7 @@
<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%2A> is a list of <xref:System.Data.Common.CommandTrees.DbSortClause> objects.
<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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument> property is set. For example, <xref:System.Data.Common.CommandTrees.DbDistinctExpression> requires that its argument expression has a collection result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument%2A> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.
Derived expression types might perform stricter type checks when the <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument> property is set. For example, <xref:System.Data.Common.CommandTrees.DbDistinctExpression> requires that its argument expression has a collection result type. Typically, derived expression types will not allow <xref:System.Data.Common.CommandTrees.DbUnaryExpression.Argument*> to be set to an expression with a result type that is not equal or promotable to the result type of the current value.

]]></format>
</remarks>
Expand Down
8 changes: 4 additions & 4 deletions xml/System.Data.Common/DBDataPermission.xml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword%2A> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword*> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.

]]></format>
</remarks>
Expand Down Expand Up @@ -376,7 +376,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword%2A> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.
The <xref:System.Security.Permissions.PermissionState> enumeration takes precedence over the <xref:System.Data.Common.DBDataPermission.AllowBlankPassword> property. Therefore, if you set <xref:System.Data.Common.DBDataPermission.AllowBlankPassword*> to `false`, you must also set <xref:System.Security.Permissions.PermissionState> to `None` to prevent a user from making a connection using a blank password.

]]></format>
</remarks>
Expand Down Expand Up @@ -729,7 +729,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
Custom code that extends security objects must implement the <xref:System.Data.Common.DBDataPermission.ToXml%2A> and <xref:System.Data.Common.DBDataPermission.FromXml%2A> methods to make the objects security encodable.
Custom code that extends security objects must implement the <xref:System.Data.Common.DBDataPermission.ToXml*> and <xref:System.Data.Common.DBDataPermission.FromXml*> methods to make the objects security encodable.

]]></format>
</remarks>
Expand Down Expand Up @@ -777,7 +777,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The result of a call to <xref:System.Data.Common.DBDataPermission.Union%2A> is a permission that represents all the operations permitted by both the current permission object and the specified permission object. Any demand that passes either permission passes their union.
The result of a call to <xref:System.Data.Common.DBDataPermission.Union*> is a permission that represents all the operations permitted by both the current permission object and the specified permission object. Any demand that passes either permission passes their union.

]]></format>
</remarks>
Expand Down
Loading
Loading