How to NOT automatically create a Primary Key on an Id field

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?

OrmLite expects each table has a single Primary Key, if you don’t want it to be Id you can use the [PrimaryKey] attribute to assign it to a different field.