Hi, I'm getting an error when attempting to build the Dapper.Rainbow project `Property or indexer 'Database<TDatabase>.Transaction' cannot be assigned to -- it is read only` [Error in github Actions](https://github.com/DapperLib/Dapper/actions/runs/7937770474/job/21675575092) [The Transaction property was recently changed to Read-only causing the problem ]( https://github.com/DapperLib/Dapper/blob/4f8e92fba53e789bf55d3054b30b3a5555a40363/Dapper.Rainbow/Database.cs#L182). adding `private set; `will allow the Transaction to be updated within the class while keeping it protected from being updated outside of the class ```c# /// <summary> /// Get access to the underlying transaction /// </summary> public DbTransaction Transaction { get; private set; } ```