我有Message
如下 POCO 课程。
public class Message
{
//<Summary>
//Fields...
//</Summary>
//other fields
public Guid UserId { get; set; }
public virtual User User { get; set; }
}
我试图获得一个可为空的UserId
字段,为此我写
public Guid? UserId { get; set; }
但它不起作用,然后我尝试 FluentApi 如下:
Property(mes => mes.UserId).IsOptional();
但它不再起作用了。我不知道任何其他方法。请帮我。
解决方案:我在 Property-HasOptional 之前使用了 Fulent api HasRequired-HasMany 关系。所以它给出了 not null 属性。