CreateEntity.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 entity instance (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 created.")]
public System.Activities.InOutArgument<Microsoft.Xrm.Sdk.Entity> Entity { get; set; }
[<System.Activities.RequiredArgument>]
[<System.ComponentModel.Description("Entity to be created.")>]
member this.Entity : System.Activities.InOutArgument<Microsoft.Xrm.Sdk.Entity> with get, set
Public Property Entity As InOutArgument(Of Entity)
Property Value
The entity instance (record).
- 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 to create the record. Only attribute values for attributes that are valid for create and that the user has access to create will be used, all others will be ignored.
On output, this the entity instance that was created.