Value cannot be null. Parameter name: entitySet

前端 未结 12 1856
夕颜
夕颜 2020-12-03 17:02

I have a fairly standard setup with simply POCO classes

public class Project
{

    public int ProjectId { get; set; }
    public string Name { get; set; }
          


        
12条回答
  •  心在旅途
    2020-12-03 17:33

    I had the same issue and the cause was a POCO class that had a property of type Type.

提交回复
热议问题