Gets or sets the version of the entity.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [DataMemberAttribute(Name = "version", EmitDefaultValue = true)]
public int Version { get; set; }
<DataMemberAttribute(Name := "version", EmitDefaultValue := true)>
Public Property Version As Integer
Get
Set
public:
[DataMemberAttribute(Name = L"version", EmitDefaultValue = true)]
property int Version {
int get ();
void set (int value);
}
[<DataMemberAttribute(Name = "version", EmitDefaultValue = true)>]
member Version : int with get, set
Property Value
Type:
Int32
The entity version.
Remarks Caution |
---|
This is used to determine if the view or some properties in it are different and
it should be upgraded or handled differently to function correctly. This should only be
set by the creator of the view.
|
See Also