문제

I'm using the modelBuilder class. Setting a not null field is easy using IsRequired when the property is of type string. As soon as the type is of type decimal, intellisense is not showing the IsRequired method.

  public class CategotyConfig: EntityConfiguration<Category>
  {
        public CategotyConfig()
        {
            this.Property(x => x.Name).IsRequired();
        }
  }

How can I set a field of type decimal to be not null ? Without using attributes.

도움이 되었습니까?

해결책

decimal (as opposed to decimal?) is already required, because it's non-nullable.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top