我对ADo.net entity
框架很陌生,我收到以下错误
The type 'Edm.Byte' of the member 'IsActive' in the conceptual side type
NopSolutions.NopCommerce.BusinessLogic.Data.Language' does not match with the type
System.Boolean' of the member 'IsActive' on the object side type NopSolutions.NopCommerce.BusinessLogic.Directory.Language'.
据我了解,将edm和对象的数据类型关联起来有一些缺失
但是我在数据库表中创建了一个位类型的列,并在其中langauge.cs
声明了
public bool IsActive { get; set; }
我可以在这里发布任何需要的细节
编辑 :
当我在谷歌周围搜索时,我在 stackoverflow 上发现了这个问题
et-model-property-to-boolean-in-entity-framework将 Byte 更改为 Boolean 以映射 tinyint
但就我而言,我在数据库中也有一点。