EntityType: BusinessDriverDepartment (ProjectData service)
Last modified: March 09, 2015
In this article
Definition
Parent element
Child elements
Contains the properties that define the reporting data for a business driver department in the ProjectData service.
The following REST query uses the BusinessDriverDepartments entity set and the DepartmentId key to get the specified business driver departments in ProjectData. The query is all on one line.
https://<pwa_url>/_api/ProjectData/BusinessDriverDepartments
?$filter=DepartmentId eq guid'64a32ef6-7849-e211-9c40-00155da03b0b'
<EntityType Name="BusinessDriverDepartment">
<Key>
<PropertyRef Name="BusinessDriverId" />
<PropertyRef Name="DepartmentId" />
</Key>
<Property Name="BusinessDriverId" Type="Edm.Guid" Nullable="false" />
. . .
<NavigationProperty Name="BusinessDriver" Relationship="ReportingData.BusinessDriver_Departments_BusinessDriverDepartment_BusinessDriver" ToRole="BusinessDriver_Departments" FromRole="BusinessDriverDepartment_BusinessDriver" />
</EntityType>
Child elements are properties of a business driver department and navigation properties of that business driver department. Attributes of the Property elements specify the property name and type, and whether the property can be a null value. The NavigationProperty elements specify collections of entities, such as tasks and assignments, that are associated with a business driver department. A navigation property uses an Association element in a query for a related entity or collection
The Key elements specify the properties that are the primary keys for a query for a business driver department. BusinessDriverId is the GUID of the business driver department and DepartmentId is the GUID of the department of the business driver.
Property elements
The following table lists the values of the Property elements for the BusinessDriverDepartment entity. The Name, Type, and Nullable columns contain attribute values for each property.
|
Name |
Type |
Nullable |
Description |
|---|---|---|---|
|
BusinessDriverId |
Edm.Guid |
false |
Key
|
|
BusinessDriverName |
Edm.String |
true |
The name of the business driver. |
|
DepartmentId |
Edm.Guid |
false |
Key
|
|
DepartmentName |
Edm.String |
true |
The name of the business driver department. |
NavigationProperty elements
The following table lists attribute values for the NavigationProperty elements of the BusinessDriveDepartment entity. The Name and Relationship columns contain attribute values for each navigation property.
Each Relationship attribute has two pairs of names; each pair of names indicates a navigation direction. The first pair starts with the entity type that has the primary, or starting, role in the navigation. The second pair starts with the entity type that has the secondary, or dependent, role in the navigation. For example, for the BusinessDriver navigation property, the primary type is BusinessDriver, and the secondary type is BusinessDriverDepartment. For this type of navigation, the FromRole is BusinessDriver_Departments, and the ToRole is BusinessDriverDepartment_BusinessDriver.
|
Name |
Relationship |
Description |
|---|---|---|
|
BusinessDriver |
BusinessDriver_Departments_BusinessDriverDepartment_BusinessDriver |
Establishes navigation from a business driver to a collection of business driver departments and from a business driver department to a business driver. |