Razor View Engine : An expression tree may not contain a dynamic operation

后端 未结 7 1928
不思量自难忘°
不思量自难忘° 2020-11-28 08:50

I have a model similar to this:

public class SampleModel
{
     public Product Product { get; set; } 
}

And in my controller I get an excep

7条回答
  •  半阙折子戏
    2020-11-28 09:35

    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.

提交回复
热议问题