Exago .NET API Documentation
EntityColumnMetadata Constructor(String)
Example 
WebReports.Api.Reports Namespace > EntityColumnMetadata Class > EntityColumnMetadata Constructor : EntityColumnMetadata Constructor(String)
The name of the column as it exists in the data source. This can be found in the Entity.DbName Property
Create a new EntityColumnMetadata object, providing at a minimum, the name of the column as it exists in the data source.
Syntax
public EntityColumnMetadata( 
   System.string columnName
)

Parameters

columnName
The name of the column as it exists in the data source. This can be found in the Entity.DbName Property
Example
Set the Filterable, Data Type and Alias on the Campaign ID column
myNewEntity.ColumnMetadatas.Add(new EntityColumnMetadata("Campaign ID")
{
	IsFilterable = FilterableType.None,
	ColumnType = "Int",
	MnemonicName = "ID"
});
See Also

Reference

EntityColumnMetadata Class
EntityColumnMetadata Members
Overload List