-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathDbUnaryExpression.xml
More file actions
67 lines (63 loc) · 4.45 KB
/
DbUnaryExpression.xml
File metadata and controls
67 lines (63 loc) · 4.45 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
<Type Name="DbUnaryExpression" FullName="System.Data.Common.CommandTrees.DbUnaryExpression">
<TypeSignature Language="C#" Value="public abstract class DbUnaryExpression : System.Data.Common.CommandTrees.DbExpression" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit DbUnaryExpression extends System.Data.Common.CommandTrees.DbExpression" />
<TypeSignature Language="DocId" Value="T:System.Data.Common.CommandTrees.DbUnaryExpression" />
<TypeSignature Language="VB.NET" Value="Public MustInherit Class DbUnaryExpression
Inherits DbExpression" />
<TypeSignature Language="F#" Value="type DbUnaryExpression = class
 inherit DbExpression" />
<TypeSignature Language="C++ CLI" Value="public ref class DbUnaryExpression abstract : 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>Implements the basic functionality required by expressions that accept a single expression argument.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class is a helper base class on which many of the subsequent classes are built.
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName="Argument">
<MemberSignature Language="C#" Value="public System.Data.Common.CommandTrees.DbExpression Argument { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Data.Common.CommandTrees.DbExpression Argument" />
<MemberSignature Language="DocId" Value="P:System.Data.Common.CommandTrees.DbUnaryExpression.Argument" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Argument As DbExpression" />
<MemberSignature Language="F#" Value="member this.Argument : System.Data.Common.CommandTrees.DbExpression" Usage="System.Data.Common.CommandTrees.DbUnaryExpression.Argument" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Data::Common::CommandTrees::DbExpression ^ Argument { 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 the <see cref="T:System.Data.Common.CommandTrees.DbExpression" /> that defines the argument.</summary>
<value>The <see cref="T:System.Data.Common.CommandTrees.DbExpression" /> that defines the argument.</value>
<remarks>
<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*> 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>
<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 a <see cref="T:System.Data.Common.CommandTrees.DbUnaryExpression" />, or its result type is not equal or promotable to the required type for the argument.</exception>
</Docs>
</Member>
</Members>
</Type>