Specify the posution of a field as they should be listed by default
Namespace: Composite.DataAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
Examples
This sample shows how to use the FieldPosition attribute.
CopyC#

// data interface attributes ... interface IMyDataType : IData { [StoreFieldType(PhysicalStoreFieldType.String, 64)] [ImmutableFieldId("{D75EA67F-AD14-4BAB-8547-6D87002709F3}")] [FieldPosition(1)] string Title { get; set; } // more data properties ... }