I'm still relatively new to the product. I'm using v2.6.
If I create an entity and save it:
BankEntity bank = new BankEntity();
bank.AccountNumber = "1234567";
bank.Save();
Everything is fine of course. What I would then like to do is save the same entity again, or rather insert a new row and not update.
Besides creating a new BankEntity and copying the non-primary key values and issuing a save, is there a simple flag I can set to force an insert such that:
bank.Save();
Creates a new row in the table?
This is an oversimplified scenario but it captures the basic idea of what I'm trying to do.
Thanks!