Exago .NET API Documentation
DataObjectType Class
Members  Example 
WebReports.Api.Data Namespace : DataObjectType Class
The DataObjectType fields are used when working with  the ObjectType Property of the Entity Class.
Syntax
public class DataObjectType 
Example
Setting the Object Type to a Database Table
Entity myNewEntity = api.Entities.NewEntity("Campaigns");
myNewEntity.DataSourceId = api.DataSources.GetDataSource("Donations MSSQL").Id;
myNewEntity.ObjectType = DataObjectType.Table;
myNewEntity.Id = "campaigns";
myNewEntity.DbName = "Campaigns";
myNewEntity.Name = "campaigns";
myNewEntity.ObjectDescription = "Fundraising campaigns";
myNewEntity.Category = "CRM\\Sales";
Inheritance Hierarchy

System.Object
   WebReports.Api.Data.DataObjectType

See Also

Reference

DataObjectType Members
WebReports.Api.Data Namespace