Title here
Summary here
This property can be used in the ColumnTransformation to change the order of a column in the outgoing dynamic object. Please note that there is no guarantee that the order of the columns is preserved by the dynamic object. But in the current implementation of the ExpandoObject in the CLR, it seems that this is the case.
[AttributeUsage(AttributeTargets.Property)]
public sealed class ReorderColumn : Attribute
public ReorderColumn()
public ReorderColumn(int index)
Type | Name | Description |
---|---|---|
int | index |
Index of the column in the output
public int Index { get; set; }
Type | Description |
---|---|
int |
Name of the property - also assign an index value to set up the order of the columns.
public string PropertyName { get; set; }
Type | Description |
---|---|
string |