android--------解决Entities and POJOs must have a usable public constructor

Posted littemelon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android--------解决Entities and POJOs must have a usable public constructor相关的知识,希望对你有一定的参考价值。

     今天在学习android数据库,运行程序的时候报错,错误是:Entities and POJOs must have a usable public constructor. You can have an empty constructor or a constructor whose parameters match the fields (by name and type).Tried the following constructors but they failed to match:

Word(java.lang.String,java.lang.String) -> [param:english_word -> matched field:unmatched, param:chinese_meaning -> matched field:unmatched]。

   解决方法:在实体类写一个空的构造函数即可。

  因为我有一个有参的构造函数,于是我写了一个空的构造函数即可运行。

  

 

   写一个空的构造函数:

 

 

 

 

 

  运行成功:

 

  

 

 

以上是关于android--------解决Entities and POJOs must have a usable public constructor的主要内容,如果未能解决你的问题,请参考以下文章

LINQ to Entities 不识别方法“System.String ToString() 的解决方法

这是如何运作的? LINQ to Entities 触发程序集的加载?

我如何修复“LINQ to Entities无法识别方法”错误

LINQ to Entities 和 String.StartsWith 的问题

在 LINQ to Entities 查询中无法构造实体或复杂类型

Validation failed for one or more entities. See 'EntityValidationErrors' property for more d