在编译带有单个 POCO 的 dll 时遇到问题,假设:
public Person
{
public Guid PersonId { get; set; }
public Person()
{
this.PersonId = Guid.NewGuid();
}
}
当我将编译的 dll 连接到另一个项目时,我的类看起来像
public Person
{
public Guid PersonId { get; set; }
public Person();
}
构造函数体在哪里?我错过了什么?
PS Project Runtime 是 v.4.5,而 DLL 是 v4.0