Exago .NET API Documentation
ColumnMetadatas Property
Example 
WebReports.Api.Reports Namespace > Entity Class : ColumnMetadatas Property
A collection of the column metadata for all columns in this Entity (Data Object).
Syntax
public EntityColumnMetadataCollection ColumnMetadatas {get;}
Remarks
For all available column metadata properties, see the EntityColumnMetadata class.
Example
Set some of the column metadata attributes for the column named "Campaign ID"
myNewEntity.ColumnMetadatas.Add(new EntityColumnMetadata("Campaign ID")
{
	IsFilterable = FilterableType.None,	
	ColumnType = "Int",
	MnemonicName = "ID"		//This is the Column Alias in the Admin Console
});
See Also

Reference

Entity Class
Entity Members