Add this attribute to your data interface to control the physical store sort order of data.
This concept is known as the clustered index on SQL Server.
Namespace: Composite.DataAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
Examples
This sample shows how to use the StoreSortOrder attribute.
CopyC#

[StoreSortOrderAttribute("Date", "Title")] // (other IData attributes) interface IMyDataType : IData { // data type properties, must include Date and Title since we ref them above }