GroupDataProjectId Property  | 
 Gets or sets the ID of the project to which the group belongs.
 
    Namespace: 
   Dundas.BI.WebApi.Models
    Assembly:
   Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntax[DataMemberAttribute(Name = "projectId", EmitDefaultValue = false)]
public Guid? ProjectId { get; set; }<DataMemberAttribute(Name := "projectId", EmitDefaultValue := false)>
Public Property ProjectId As Guid?
	Get
	Set
public:
[DataMemberAttribute(Name = L"projectId", EmitDefaultValue = false)]
property Nullable<Guid> ProjectId {
	Nullable<Guid> get ();
	void set (Nullable<Guid> value);
}[<DataMemberAttribute(Name = "projectId", EmitDefaultValue = false)>]
member ProjectId : Nullable<Guid> with get, set
Property Value
Type: 
NullableGuid
            The ID of the project to which the group belongs, or 
 if the group does not belong to a project.
            
Exceptions| Exception | Condition | 
|---|
| InvalidOperationException | The value is changed on an existing group. | 
RemarksThis property can only be set when the group is first created.
See Also