UpdateEntity.Entity Property
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.
Gets or sets the record.
public:
property System::Activities::InOutArgument<Microsoft::Xrm::Sdk::Entity ^> ^ Entity { System::Activities::InOutArgument<Microsoft::Xrm::Sdk::Entity ^> ^ get(); void set(System::Activities::InOutArgument<Microsoft::Xrm::Sdk::Entity ^> ^ value); };
[System.Activities.RequiredArgument]
[System.ComponentModel.Description("Entity to be updated.")]
[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Visible)]
public System.Activities.InOutArgument<Microsoft.Xrm.Sdk.Entity> Entity { get; set; }
[<System.Activities.RequiredArgument>]
[<System.ComponentModel.Description("Entity to be updated.")>]
[<System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Visible)>]
member this.Entity : System.Activities.InOutArgument<Microsoft.Xrm.Sdk.Entity> with get, set
Public Property Entity As InOutArgument(Of Entity)
Property Value
The record to update.
- Attributes
Remarks
This is an entity instance of the type specified by the EntityName
property. On input, the attribute values that have been set will be used update the record. Only attribute values for attributes that are valid for update and that the user has access to update will be used, all others will be ignored.
On output, this is the record that was updated.