I have a table that I am using for fairly short lived data manipulation, it has the same structure as another table except that I don’t want it to have any primary key or Index constraint on the field called ‘Id’.
I don’t want any index on the table.
Not a big deal as in this case I could use a temp table or create the table without ormlite but I expect there is probably an attribute like [NotIndex] to avoid the convention?