Telerik OpenAccess ORM

Telerik OpenAccess ORM Send comments on this topic.
ordered
Programmer's Guide > OpenAccess ORM Classic (Old API) > Programming With OpenAccess > Metadata Extension Reference > ordered

Glossary Item Box

Configures a collection or array as ordered or not (boolean extension). By default OpenAccess ORM preserves the order of elements in lists and arrays by adding a sequence column to the table used to store the elements. If the order is not important use this option to disable ordering. This extension is also useful in conjunction with the Ordering extension to order a list based on an OQL ordering expression.

Copy Code
<field name="emailList">
    <collection element-type="System.String">
        <extension key="ordered" value="false" />
    </collection>
</field>