Delta<TEntityType> Constructor
Initializes a new instance of Delta<TEntityType>.
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Overload List
Name | Description | |
---|---|---|
Delta<TEntityType>() | Initializes a new instance of Delta<TEntityType>. |
|
Delta<TEntityType>(Type) | Initializes a new instance of Delta<TEntityType>. |
|
Delta<TEntityType>(Type, IEnumerable<String>) | Initializes a new instance of Delta<TEntityType>. |
See Also
Delta<TEntityType> Class
System.Web.Http.OData Namespace
Return to top
Delta<TEntityType> Constructor ()
Initializes a new instance of Delta<TEntityType>.
Syntax
public Delta()
public:
Delta()
new : unit -> Delta
Public Sub New
Return to top
Delta<TEntityType> Constructor (Type)
Initializes a new instance of Delta<TEntityType>.
Syntax
public Delta(
Type entityType
)
public:
Delta(
Type^ entityType
)
new :
entityType:Type -> Delta
Public Sub New (
entityType As Type
)
Parameters
entityType
Type: System.TypeThe derived entity type for which the changes would be tracked. entityType should be assignable to instances of TEntityType.
Return to top
Delta<TEntityType> Constructor (Type, IEnumerable<String>)
Initializes a new instance of Delta<TEntityType>.
Syntax
public Delta(
Type entityType,
IEnumerable<string> updatableProperties
)
public:
Delta(
Type^ entityType,
IEnumerable<String^>^ updatableProperties
)
new :
entityType:Type *
updatableProperties:IEnumerable<string> -> Delta
Public Sub New (
entityType As Type,
updatableProperties As IEnumerable(Of String)
)
Parameters
entityType
Type: System.TypeThe derived entity type for which the changes would be tracked. entityType should be assignable to instances of TEntityType.
updatableProperties
Type: System.Collections.Generic.IEnumerable<String>The set of properties that can be updated or reset.
Return to top