We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
Property or indexer 'Database<TDatabase>.Transaction' cannot be assigned to -- it is read only
The Transaction property was recently changed to Read-only causing the problem .
adding private set; will allow the Transaction to be updated within the class while keeping it protected from being updated outside of the class
private set;
/// <summary> /// Get access to the underlying transaction /// </summary> public DbTransaction Transaction { get; private set; }
The text was updated successfully, but these errors were encountered:
Issue DapperLib#2044
9f49bf5
Issue #2044 (#2045)
1088065
Successfully merging a pull request may close this issue.
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
The Transaction property was recently changed to Read-only causing the problem .
adding
private set;
will allow the Transaction to be updated within the class while keeping it protected from being updated outside of the classThe text was updated successfully, but these errors were encountered: