I have a process where I create multiple new entities. I've tried adding them to a collection (doing a .Persist() on them), and then when my collection is ready, trying to commit the transaction.
I've checked to make sure that no database calls are being executed until I call Transaction.Commit(), but once I call commit, I see calls being made for each individual entity.
Is there a way to save an entire collection of same-type entities at once?