How do you create a DESC CompositeIndex?

e.g.

[CompositeIndex(“Field1”, “Field2 DESC”)]

Wasn’t supported before but is now :smile: , available from v4.0.43+ that’s now on MyGet.

Can use same syntax, i.e:

[CompositeIndex("Field1", "Field2 DESC")]
public class Table
{
    ...
    public string Field1 { get; set; }
    public string Field2 { get; set; }
}

Looks great, thanks. I’ll check it when I get onto that next release.