/// <summary> /// Initializes a new instance of the <see cref="IndexDefinition"/> class. /// For use when defining a new index. /// </summary> /// <param name="name"> /// The name of the index to be defined. /// </param> public IndexDefinition(string name) { this.name = name; this.keyColumnCollection = new KeyColumnCollection(); this.conditionalColumnCollection = new ConditionalColumnCollection(); }