Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am attempting to Mock an IDataRecord interface.

So far I have:

        var mockIDataRecord = new Mock<IDataRecord>();
        mockIDataRecord.SetupGet(c => c["id"]).Returns(7);
        var z = mockIDataRecord["id"];

But Visual Studio throws a compilation error on the last line of that:

Error 2 Cannot apply indexing with [] to an expression of type 'Moq.Mock <System.Data.IDataRecord>'

Any suggestions?

share|improve this question

2 Answers

up vote 1 down vote accepted

The error is what visual studio says. You are applying indexing to instance of Mock class, not its generic parameter (IDataRecord in your case). Use Mock.Object Property that will return IDataRecord and apply indexing to it

var z = mockIDataRecord.Object["id"];
share|improve this answer

You have created a mock of an object (of type IDataRecord). However you are trying to access mockIDataRecord[id] which implies that mockIDataRecord is a collection (Array?).

The type mismatch is probably what is causing the error.

Can you try something like this instead (I haven't checked the syntax):

var mockIDataRecord = new Mock<IDataRecord[]>();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.