Delta<TStructuralType> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Delta<TStructuralType>() |
Initializes a new instance of Delta<TStructuralType>. |
Delta<TStructuralType>(Type) |
Initializes a new instance of Delta<TStructuralType>. |
Delta<TStructuralType>(Type, IEnumerable<String>) |
Initializes a new instance of Delta<TStructuralType>. |
Delta<TStructuralType>(Type, IEnumerable<String>, PropertyInfo) |
Initializes a new instance of Delta<TStructuralType>. |
Delta<TStructuralType>()
Delta<TStructuralType>(Type)
Initializes a new instance of Delta<TStructuralType>.
public Delta (Type structuralType);
new Microsoft.AspNet.OData.Delta<'StructuralType (requires 'StructuralType : null)> : Type -> Microsoft.AspNet.OData.Delta<'StructuralType (requires 'StructuralType : null)>
Public Sub New (structuralType As Type)
Parameters
- structuralType
- Type
The derived entity type or complex type for which the changes would be tracked.
structuralType
should be assignable to instances of TStructuralType
.
Applies to
Delta<TStructuralType>(Type, IEnumerable<String>)
Initializes a new instance of Delta<TStructuralType>.
public Delta (Type structuralType, System.Collections.Generic.IEnumerable<string> updatableProperties);
new Microsoft.AspNet.OData.Delta<'StructuralType (requires 'StructuralType : null)> : Type * seq<string> -> Microsoft.AspNet.OData.Delta<'StructuralType (requires 'StructuralType : null)>
Public Sub New (structuralType As Type, updatableProperties As IEnumerable(Of String))
Parameters
- structuralType
- Type
The derived entity type or complex type for which the changes would be tracked.
structuralType
should be assignable to instances of TStructuralType
.
- updatableProperties
- IEnumerable<String>
The set of properties that can be updated or reset. Unknown property names, including those of dynamic properties, are ignored.
Applies to
Delta<TStructuralType>(Type, IEnumerable<String>, PropertyInfo)
Initializes a new instance of Delta<TStructuralType>.
public Delta (Type structuralType, System.Collections.Generic.IEnumerable<string> updatableProperties, System.Reflection.PropertyInfo dynamicDictionaryPropertyInfo);
new Microsoft.AspNet.OData.Delta<'StructuralType (requires 'StructuralType : null)> : Type * seq<string> * System.Reflection.PropertyInfo -> Microsoft.AspNet.OData.Delta<'StructuralType (requires 'StructuralType : null)>
Public Sub New (structuralType As Type, updatableProperties As IEnumerable(Of String), dynamicDictionaryPropertyInfo As PropertyInfo)
Parameters
- structuralType
- Type
The derived entity type or complex type for which the changes would be tracked.
structuralType
should be assignable to instances of TStructuralType
.
- updatableProperties
- IEnumerable<String>
The set of properties that can be updated or reset. Unknown property names, including those of dynamic properties, are ignored.
- dynamicDictionaryPropertyInfo
- PropertyInfo
The property info that is used as dictionary of dynamic
properties. null
means this entity type is not open.