I'd like to prevent the real setter code being invoked on a property on a partial class.
What is the syntax for this?
My current code to stub out the getter (I'd like to also stub out the setter):
var user = MockRepository.GeneratePartialMock<User>(ctor params...);
user.MyProperty = "blah";
Something like this?
user.Stub(u => u.MyProperty).Do(null);