I have a model similar to this:
public class SampleModel { public Product Product { get; set; } }
And in my controller I get an excep
This error happened to me because I had @@model instead of @model... copy & paste error in my case. Changing to @model fixed it for me.