Delta<TStructuralType> Constructors

Definition

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>()

Initializes a new instance of Delta<TStructuralType>.

public Delta ();
Public Sub New ()

Applies to

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.

Applies to