tfabrica
Version:
library for TFabrica - TechSol
852 lines • 3.65 MB
text/xml
<?xml version="1.0"?>
<doc>
<assembly>
<name>EntityFramework</name>
</assembly>
<members>
<member name="T:System.Data.Entity.Core.Mapping.FunctionImportResultMapping">
<summary>
Represents a result mapping for a function import.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Mapping.MappingItem">
<summary>
Base class for items in the mapping space (DataSpace.CSSpace)
</summary>
</member>
<member name="M:System.Data.Entity.Core.Mapping.FunctionImportResultMapping.AddTypeMapping(System.Data.Entity.Core.Mapping.FunctionImportStructuralTypeMapping)">
<summary>
Adds a type mapping.
</summary>
<param name="typeMapping">The type mapping to add.</param>
</member>
<member name="M:System.Data.Entity.Core.Mapping.FunctionImportResultMapping.RemoveTypeMapping(System.Data.Entity.Core.Mapping.FunctionImportStructuralTypeMapping)">
<summary>
Removes a type mapping.
</summary>
<param name="typeMapping">The type mapping to remove.</param>
</member>
<member name="P:System.Data.Entity.Core.Mapping.FunctionImportResultMapping.TypeMappings">
<summary>
Gets the type mappings.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Mapping.IsNullConditionMapping">
<summary>
Specifies a mapping condition evaluated by checking whether the value
of the a property/column is null or not null.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Mapping.ConditionPropertyMapping">
<summary>
Mapping metadata for Conditional property mapping on a type.
Condition Property Mapping specifies a Condition either on the C side property or S side property.
</summary>
<example>
For Example if conceptually you could represent the CS MSL file as following
--Mapping
--EntityContainerMapping ( CNorthwind-->SNorthwind )
--EntitySetMapping
--EntityTypeMapping
--MappingFragment
--EntityKey
--ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata )
--ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata )
--ConditionProperyMap ( constant value-->SMemberMetadata )
--EntityTypeMapping
--MappingFragment
--EntityKey
--ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata )
--ComplexPropertyMap
--ComplexTypeMap
--ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata )
--ScalarProperyMap ( CMemberMetadata-->SMemberMetadata )
--ConditionProperyMap ( constant value-->SMemberMetadata )
--AssociationSetMapping
--AssociationTypeMapping
--MappingFragment
--EndPropertyMap
--ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata )
--ScalarProperyMap ( CMemberMetadata-->SMemberMetadata )
--EndPropertyMap
--ScalarPropertyMap ( CMemberMetadata-->SMemberMetadata )
This class represents the metadata for all the condition property map elements in the
above example.
</example>
</member>
<member name="T:System.Data.Entity.Core.Mapping.PropertyMapping">
<summary>
Mapping metadata for all types of property mappings.
</summary>
<example>
For Example if conceptually you could represent the CS MSL file as following
--Mapping
--EntityContainerMapping ( CNorthwind-->SNorthwind )
--EntitySetMapping
--EntityTypeMapping
--MappingFragment
--EntityKey
--ScalarPropertyMap
--ScalarPropertyMap
--EntityTypeMapping
--MappingFragment
--EntityKey
--ScalarPropertyMap
--ComplexPropertyMap
--ScalarPropertyMap
--ScalarProperyMap
--ScalarPropertyMap
--AssociationSetMapping
--AssociationTypeMapping
--MappingFragment
--EndPropertyMap
--ScalarPropertyMap
--ScalarProperyMap
--EndPropertyMap
--ScalarPropertyMap
This class represents the metadata for all property map elements in the
above example. This includes the scalar property maps, complex property maps
and end property maps.
</example>
</member>
<member name="P:System.Data.Entity.Core.Mapping.PropertyMapping.Property">
<summary>
Gets an EdmProperty that specifies the mapped property.
</summary>
</member>
<member name="P:System.Data.Entity.Core.Mapping.ConditionPropertyMapping.Property">
<summary>
Gets an EdmProperty that specifies the mapped property.
</summary>
</member>
<member name="P:System.Data.Entity.Core.Mapping.ConditionPropertyMapping.Column">
<summary>
Gets an EdmProperty that specifies the mapped column.
</summary>
</member>
<member name="M:System.Data.Entity.Core.Mapping.IsNullConditionMapping.#ctor(System.Data.Entity.Core.Metadata.Edm.EdmProperty,System.Boolean)">
<summary>
Creates an IsNullConditionMapping instance.
</summary>
<param name="propertyOrColumn">An EdmProperty that specifies a property or column.</param>
<param name="isNull">A boolean that indicates whether to perform a null or a not-null check.</param>
</member>
<member name="P:System.Data.Entity.Core.Mapping.IsNullConditionMapping.IsNull">
<summary>
Gets a bool that specifies whether the condition is evaluated by performing a null check
or a not-null check.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Mapping.ValueConditionMapping">
<summary>
Specifies a mapping condition evaluated by comparing the value of
a property or column with a given value.
</summary>
</member>
<member name="M:System.Data.Entity.Core.Mapping.ValueConditionMapping.#ctor(System.Data.Entity.Core.Metadata.Edm.EdmProperty,System.Object)">
<summary>
Creates a ValueConditionMapping instance.
</summary>
<param name="propertyOrColumn">An EdmProperty that specifies a property or column.</param>
<param name="value">An object that specifies the value to compare with.</param>
</member>
<member name="P:System.Data.Entity.Core.Mapping.ValueConditionMapping.Value">
<summary>
Gets an object that specifies the value to check against.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Metadata.Edm.CsdlSerializer">
<summary>
Serializes an <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmModel"/> that conforms to the restrictions of a single
CSDL schema file to an XML writer. The model to be serialized must contain a single
<see cref="T:System.Data.Entity.Core.Metadata.Edm.EntityContainer"/> .
</summary>
</member>
<member name="M:System.Data.Entity.Core.Metadata.Edm.CsdlSerializer.Serialize(System.Data.Entity.Core.Metadata.Edm.EdmModel,System.Xml.XmlWriter,System.String)">
<summary>
Serialize the <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmModel"/> to the XmlWriter.
</summary>
<param name="model">
The EdmModel to serialize.
</param>
<param name="xmlWriter"> The XmlWriter to serialize to. </param>
<param name="modelNamespace">The serialized model's namespace.</param>
<returns>true if the model is valid; otherwise, false.</returns>
</member>
<member name="E:System.Data.Entity.Core.Metadata.Edm.CsdlSerializer.OnError">
<summary>
Occurs when an error is encountered serializing the model.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Metadata.Edm.DataModelErrorEventArgs">
<summary>
Information about an error that occurred processing an Entity Framework model.
</summary>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.DataModelErrorEventArgs.PropertyName">
<summary>
Gets an optional value indicating which property of the source item caused the event to be raised.
</summary>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.DataModelErrorEventArgs.ErrorMessage">
<summary>
Gets an optional descriptive message the describes the error that is being raised.
</summary>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.DataModelErrorEventArgs.Item">
<summary>
Gets a value indicating the <see cref="T:System.Data.Entity.Core.Metadata.Edm.MetadataItem"/> that caused the event to be raised.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload">
<summary>
Contains additional attributes and properties of the <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmFunction"/>
</summary>
<remarks>
Note that <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload"/> objects are short lived and exist only to
make <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmFunction"/> initialization easier. Instance of this type are not
compared to each other and arrays returned by array properties are copied to internal
collections in the <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmFunction"/> ctor. Therefore it is fine to suppress the
Code Analysis messages.
</remarks>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.Schema">
<summary>Gets or sets the function schema.</summary>
<returns>The function schema.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.StoreFunctionName">
<summary>Gets or sets the store function name.</summary>
<returns>The store function name.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.CommandText">
<summary>Gets or sets the command text associated with the function.</summary>
<returns>The command text associated with the function.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.EntitySets">
<summary>Gets or sets the entity sets for the function.</summary>
<returns>The entity sets for the function.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.IsAggregate">
<summary>Gets a value that indicates whether this is an aggregate function.</summary>
<returns>true if this is an aggregate function; otherwise, false.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.IsBuiltIn">
<summary>Gets or sets whether this function is a built-in function.</summary>
<returns>true if this function is a built-in function; otherwise, false.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.IsNiladic">
<summary>Gets or sets whether the function contains no arguments.</summary>
<returns>true if the function contains no arguments; otherwise, false.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.IsComposable">
<summary>Gets or sets whether this function can be composed.</summary>
<returns>true if this function can be composed; otherwise, false.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.IsFromProviderManifest">
<summary>Gets or sets whether this function is from a provider manifest.</summary>
<returns>true if this function is from a provider manifest; otherwise, false.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.IsCachedStoreFunction">
<summary>Gets or sets whether this function is a cached store function.</summary>
<returns>true if this function is a cached store function; otherwise, false.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.IsFunctionImport">
<summary>Gets or sets whether this function is a function import.</summary>
<returns>true if this function is a function import; otherwise, false.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.ReturnParameters">
<summary>Gets or sets the return parameters.</summary>
<returns>The return parameters.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.ParameterTypeSemantics">
<summary>Gets or sets the parameter type semantics.</summary>
<returns>The parameter type semantics.</returns>
</member>
<member name="P:System.Data.Entity.Core.Metadata.Edm.EdmFunctionPayload.Parameters">
<summary>Gets or sets the function parameters.</summary>
<returns>The function parameters.</returns>
</member>
<member name="T:System.Data.Entity.Core.Metadata.Edm.SsdlSerializer">
<summary>
Serializes the storage (database) section of an <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmModel"/> to XML.
</summary>
</member>
<member name="M:System.Data.Entity.Core.Metadata.Edm.SsdlSerializer.Serialize(System.Data.Entity.Core.Metadata.Edm.EdmModel,System.String,System.String,System.Xml.XmlWriter,System.Boolean)">
<summary>
Serialize the <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmModel"/> to the <see cref="T:System.Xml.XmlWriter"/>
</summary>
<param name="dbDatabase"> The EdmModel to serialize </param>
<param name="provider"> Provider information on the Schema element </param>
<param name="providerManifestToken"> ProviderManifestToken information on the Schema element </param>
<param name="xmlWriter"> The XmlWriter to serialize to </param>
<param name="serializeDefaultNullability">A value indicating whether to serialize Nullable attributes when they are set to the default value.</param>
<returns> true if model can be serialized, otherwise false </returns>
</member>
<member name="M:System.Data.Entity.Core.Metadata.Edm.SsdlSerializer.Serialize(System.Data.Entity.Core.Metadata.Edm.EdmModel,System.String,System.String,System.String,System.Xml.XmlWriter,System.Boolean)">
<summary>
Serialize the <see cref="T:System.Data.Entity.Core.Metadata.Edm.EdmModel"/> to the <see cref="T:System.Xml.XmlWriter"/>
</summary>
<param name="dbDatabase"> The EdmModel to serialize </param>
<param name="namespaceName"> Namespace name on the Schema element </param>
<param name="provider"> Provider information on the Schema element </param>
<param name="providerManifestToken"> ProviderManifestToken information on the Schema element </param>
<param name="xmlWriter"> The XmlWriter to serialize to </param>
<param name="serializeDefaultNullability">A value indicating whether to serialize Nullable attributes when they are set to the default value.</param>
<returns> true if model can be serialized, otherwise false </returns>
</member>
<member name="E:System.Data.Entity.Core.Metadata.Edm.SsdlSerializer.OnError">
<summary>
Occurs when an error is encountered serializing the model.
</summary>
</member>
<member name="T:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVisitor">
<summary> Visits each element of an expression tree from a given root expression. If any element changes, the tree is rebuilt back to the root and the new root expression is returned; otherwise the original root expression is returned. </summary>
</member>
<member name="T:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1">
<summary>Defines the basic functionality that should be implemented by visitors that return a result value of a specific type. </summary>
<typeparam name="TResultType">The type of the result produced by the visitor.</typeparam>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbExpression)">
<summary>When overridden in a derived class, handles any expression of an unrecognized type.</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbAndExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbAndExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbAndExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbArithmeticExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbArithmeticExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbArithmeticExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbCaseExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbCaseExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbCaseExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbCastExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbCastExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbCastExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbComparisonExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbComparisonExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbComparisonExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbConstantExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbConstantExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbConstantExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbCrossJoinExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbCrossJoinExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbCrossJoinExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbDerefExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbDerefExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbDerefExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbDistinctExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbDistinctExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbDistinctExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbElementExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbElementExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbElementExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbExceptExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbExceptExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbExceptExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbFilterExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbFilterExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbFilterExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbEntityRefExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbEntityRefExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbEntityRefExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbRefKeyExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbRefKeyExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbRefKeyExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbGroupByExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbGroupByExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbGroupByExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbIntersectExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIntersectExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIntersectExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbIsEmptyExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIsEmptyExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIsEmptyExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbIsNullExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIsNullExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIsNullExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbIsOfExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIsOfExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbIsOfExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbJoinExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbJoinExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbJoinExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbLambdaExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern method for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbLambdaExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbLambdaExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbLikeExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbLikeExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbLikeExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbLimitExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbLimitExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbLimitExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbNewInstanceExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbNewInstanceExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbNewInstanceExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbNotExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbNotExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbNotExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbNullExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbNullExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbNullExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbOfTypeExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbOfTypeExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbOfTypeExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbOrExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbOrExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbOrExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbParameterReferenceExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbParameterReferenceExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbParameterReferenceExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbProjectExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbProjectExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbProjectExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbPropertyExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbPropertyExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbPropertyExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbQuantifierExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbRefExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbRefExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbRefExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbRelationshipNavigationExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbRelationshipNavigationExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbRelationshipNavigationExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbScanExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbScanExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbScanExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbSortExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbSortExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbSortExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbSkipExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbSkipExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbSkipExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbTreatExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbTreatExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbTreatExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbUnionAllExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbUnionAllExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbUnionAllExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbVariableReferenceExpression)">
<summary>
When overridden in a derived class, implements the visitor pattern for
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DbVariableReferenceExpression" />
.
</summary>
<returns>A result value of a specific type.</returns>
<param name="expression">
The <see cref="T:System.Data.Entity.Core.Common.CommandTrees.DbVariableReferenceExpression" /> that is being visited.
</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DbExpressionVisitor`1.Visit(System.Data.Entity.Core.Common.CommandTrees.DbInExpression)">
<summary>
Typed visitor pattern method for DbInExpression.
</summary>
<param name="expression"> The DbInExpression that is being visited. </param>
<returns> An instance of TResultType. </returns>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVisitor.#ctor">
<summary>
Initializes a new instance of the
<see
cref="T:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVisitor" />
class.
</summary>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVisitor.OnExpressionReplaced(System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Data.Entity.Core.Common.CommandTrees.DbExpression)">
<summary>Replaces an old expression with a new one for the expression visitor.</summary>
<param name="oldExpression">The old expression.</param>
<param name="newExpression">The new expression.</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVisitor.OnVariableRebound(System.Data.Entity.Core.Common.CommandTrees.DbVariableReferenceExpression,System.Data.Entity.Core.Common.CommandTrees.DbVariableReferenceExpression)">
<summary>Represents an event when the variable is rebound for the expression visitor.</summary>
<param name="fromVarRef">The location of the variable.</param>
<param name="toVarRef">The reference of the variable where it is rebounded.</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVisitor.OnEnterScope(System.Collections.Generic.IEnumerable{System.Data.Entity.Core.Common.CommandTrees.DbVariableReferenceExpression})">
<summary>Represents an event when entering the scope for the expression visitor with specified scope variables.</summary>
<param name="scopeVariables">The collection of scope variables.</param>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVisitor.OnExitScope">
<summary>Exits the scope for the expression visitor.</summary>
</member>
<member name="M:System.Data.Entity.Core.Common.CommandTrees.DefaultExpressionVi