Class EntityIncludeInIndexAttribute
Appends the specified columns as ones which should be included in the specified index.
Inherited Members
Namespace: LemonEdge.API.Attributes
Assembly: LemonEdge.API.dll
Syntax
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Interface, Inherited = false, AllowMultiple = true)]
public class EntityIncludeInIndexAttribute : Attribute
Constructors
EntityIncludeInIndexAttribute()
Declaration
public EntityIncludeInIndexAttribute()
Properties
IncludeColumns
An array of columns to be added as Included Columns to the specified IndexName index
The core system indexes are called Utils.Database.TableIndex.ASOF and CANVAS
Declaration
public string[] IncludeColumns { get; set; }
Property Value
Type | Description |
---|---|
string[] |
IndexName
The name of the index you want to append the specified IncludeColumns columns to as Included Columns
For instance you can add columns to include in the core indexes such as the CANVAS indexes
Declaration
public string IndexName { get; set; }
Property Value
Type | Description |
---|---|
string |