0
在配置屬性(名稱爲字符串,RowVersion是字節)實體框架4.1流利的API特性
這工作:
Me.Property(Function(t) t.Name).IsRequired().IsFixedLength.HasMaxLength(10)
但是這給了我一個錯誤:
Me.Property(Function(t) t.RowVersion).IsRequired().IsFixedLength().HasMaxLength(8)
錯誤是:
'IsFixedLength' is not a member of 'System.Data.Entity.ModelConfiguration.Configuration.PrimitivePropertyConfiguration'
任何建議爲什麼?