在创建数据库时,我已经以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)'.
答案 0 :(得分:0)
我有同样的错误,它源于使用 XElement 作为EF DbSet的属性。
背景
EF无法实例化需要构造函数中的参数的类(在您的情况下为XName)。