找不到适用于实体类型“ XName”的合适构造函数

时间:2019-06-28 09:43:23

标签: c# xamarin.forms entity-framework-core

在创建数据库时,我已经以Xamarin形式实现了EntityFrameworkcore sqlite,以下异常正在通过。

No suitable constructor found for entity type 'XName'. The following constructors had parameters that could not be bound to properties of the entity type: cannot bind 'ns', 'localName' in 'XName(XNamespace ns, string localName)'.

1 个答案:

答案 0 :(得分:0)

我有同样的错误,它源于使用 XElement 作为EF DbSet的属性。

背景

EF无法实例化需要构造函数中的参数的类(在您的情况下为XName)。