Exago .NET API Documentation
Entity Class
Members  Example 
WebReports.Api.Reports Namespace : Entity Class
An Entity object represents an Exago Data ObjectData Objects are the tables, views, methods, stored procedures, functions and custom SQL made accessible from the Data Sources for reports.
Object Model
Entity ClassEntityColumnMetadataCollection ClassEntityColumn ClassKeyColumnCollection ClassEntityParameterCollection ClassEntityTenantCollection Class
Syntax
public class Entity 
Example
Three ways to identify an entity -- by the alias, the ID or the Database Name
foreach (Entity entity in api.Entities)
{
  // three ways to identify an entity
  string.Format("Alias: {0}, Id: {1}, Database Name: {2}\n",
    entity.Name,  // Exago Admin Console Alias field
    entity.Id,    // Exago Admin Console ID field
    entity.DbName // As it appears in the data source
  );
}
Inheritance Hierarchy

System.Object
   WebReports.Api.Reports.Entity

See Also

Reference

Entity Members
WebReports.Api.Reports Namespace

Exago Knowledge Base

Data Objects