using(var exc = cn.Executer())
{
// by table alias
var t0 = new Orders().AsQueryable();
exc.CreateIndex(t0, t0.Indexes.First(), "my_index");
// by table name
exc.CreateIndex("table1", true, new[] { "column1", "column2" }, "my_index");
}