I am trying to Mock SqlConnection, which essentially is IDbConnection.
For that I prepare my mock for my test:
var dbConnectionMock = new Mock<IDbConnection>();
dbConnectionMock.Setup(x => x.CreateCommand()).Returns(new SqlCommand());
var repository = new XxxRepository(dbConnectionMock.Object);
The Constructor of the repository sets this property:
private IDbConnection Connection { get; set; }
And then Connection is used when calling the Db.
var command = Connection.CreateCommand();
command.Connection = Connection; // here it fails, because Connection is the proxy type of IDbConnection, IDbConnectionProxy.
How can I avoid the use of the proxy?
All I wanna test is that command.ExecuteNonQuery() was called.