Just a simple question: Is it possible to create indexes programmatically somehow? (Would like to add indexes during runtime, ie add directly to domain config before build) This is my model (kind of, anyway, I've simplified it a bit, but I think it should behave irrationally :) )
Placing [HierachyRoot] on EBase will make index Foo to not appear in DB, however, placing [HierachyRoot] on E<t1, t2=""> will work as expected. I'm not sure if I have to set the inheritance schema to ConcreteTable for it to work as expected, but as far as I can remember it won't affect the result when placing the [HierarchyRoot] on EBase (In DB I have tables for every combination of T1 and T2 that's relevant for my application, and it's those tables I'm interested in.) |