- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在数据库表中存储一个类对象,但 ormlite 似乎不接受对象类型,这是我的数据库表:
Temp_Contacts 数据库表
public class Temp_Contacts {
@DatabaseField(generatedId = true,canBeNull = false)
private int id;
@DatabaseField
private Contacts contacts;
@DatabaseField
private Date data_actualizare;
Temp_Contacts(){}
public Temp_Contacts(Contacts contacts, Date data_actualizare){
this.contacts=contacts;
this.data_actualizare=data_actualizare;
}
public Contacts getContacts() {
return contacts;
}
public void setContactsList(Contacts contacts) {
this.contact = contacts;
}
public Date getData_actualizare() {
return data_actualizare;
}
public void setData_actualizare(Date data_actualizare) {
this.data_actualizare = data_actualizare;
}
}
联系人类
public class Contacts {
private int ID;
private String name;
private List<Telefon> numbers;
private List<Email> emails;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Telefon> getNumbers() {
return numbers;
}
public void setNumbers(List<Telefon> numbers) {
this.numbers = numbers;
}
public List<Email> getEmails() {
return emails;
}
public void setEmails(List<Email> emails) {
this.emails = emails;
}
public int getID() {
return ID;
}
public void setID(int ID) {
this.ID = ID;
}
}
这样做的主要目的是在 ormlite 数据库中存储来自 Contacts 类的对象。我更喜欢这种逻辑,但我也愿意接受其他建议。
最佳答案
基本上,您必须将其拆分到不同的表中,以便 ORMLite 正确处理它并拥有干净的数据库设计。
您最终会得到 4 个表:Temp_Contacts
、Contacts
、Email
和 Phone
:
public class Temp_Contacts {
@DatabaseField(generatedId = true,canBeNull = false)
private int id;
// declare Contacts as a foreign key
// automatically fetched when Temp_Contacts is loaded
@DatabaseField(foreign=true, foreignAutoRefresh=true)
private Contacts contacts;
@DatabaseField
private Date data_actualizare;
...
}
联系人:
public class Contacts {
@DatabaseField(id = true,canBeNull = false)
private int ID;
@DatabaseField
private String name;
// Use foreign collections for Telefon and Email
// that are loaded with Contacts
@ForeignCollectionField(eager = true)
private ForeignCollection<Telefon> numbers;
@ForeignCollectionField(eager = true)
private ForeignCollection<Email> emails;
...
}
电话和电子邮件
public class Telefon {
// Reference to the Contact object has to be there
@DatabaseField(canBeNull = false, foreign = true)
private Contacs contacts;
...
}
public class Email {
// Reference to the Contact object has to be there
@DatabaseField(canBeNull = false, foreign = true)
private Contacs contacts;
...
}
这对应于以下数据库结构:
临时联系人:
|编号 |联系人 ID |数据实现 |
联系人:
|编号 |姓名 |
电话和电子邮件
|联系人 ID | 其他领域 |
有关 ForeignObjects
和 ForeignCollections
的更多信息,请参阅 ORMLite documentation
关于android - 使用 ormlite android 存储对象字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22449769/
使用 ServiceStack.OrmLite,如果查询返回多个结果集,我如何访问所有结果集并将每个结果集分配给相应的 POCO。例如,我有一个包含以下代码的存储过程: SELECT * FROM U
首先,我是 ORMLite 的新手。我希望我的模型类有一个字段,它是一个字符串列表,最终将保存我的模型对象的标签列表。 我应该使用哪些 ORMLite 注释? 首先我不想拥有所有标签的表格,然后使用
在 Ormlite 中,是否可以在不编写实际 SQL 的情况下进行不区分大小写的查询? 例如,如果我正在寻找 列名 - “账户名” 并查询该列,如果我搜索“金融”,我想获得所有“金融”、“金融”、“金
我最近开始使用 ServiceStack 及其 ORMLite 框架。我在谷歌上搜索并浏览了源代码,但找不到任何相关内容。 使用 ORMLite 执行查询时,有没有办法选择特定的列? 类似的东西:Db
我正在寻找一种在 ormlite 中实现分页的好方法,我发现了另一个 question ,其中包含以下代码段: var data = db.Select(predicate).Skip((int) p
这是 Entity Framework : var department = _context.Departments .Include(dep => dep.Empl
我有一张 table CREATE TABLE [dbo].[ServiceTestCase]( [SSN] [int] IDENTITY(600000001,1) NOT NULL,
有没有办法用 servicestack/ormlite 预加载所有嵌套和子嵌套引用? public class Person { public int Id { get; set; }
继 this comment ,如何执行 ServiceStack OrmLite 查询来连接两个或多个表并从每个表中返回一些列? 使用 OrmLite Does_only_populate_Sele
我想知道是否可以查明 ORMLite 的 dao.createOrUpdate() 方法是否实际创建或更新了表行。有一个结果对象(CreateOrUpdateStatus),其中包含这些信息,但所有指
有什么方法可以返回 ServiceStack.OrmLite 中的表的子集吗? 像这样的东西: public class MyStuff { public Guid Id { get; set
使用 ormLite 我可以通过以下方式获取所有记录: myDao.queryForAll(); 如何只获取前 10 条记录而不是所有记录? 最佳答案 您必须使用 QueryBuilder 并设置限制
我正在 ServiceStack 的 OrmLite 中编写分页查询,选择页面范围内的总记录数和记录 ID。假设 query 是一些任意的 SqlExpression 选择一堆记录: var idQu
我正在努力用 ServiceStack 的 ORMLite 替换现有的“重型”商业 ORM。在重型 ORM 中,我们有能力 Hook “OnSaving”或“BeforeSaving”方法以在保存到数
我正在尝试 ServiceStack OrmLite,但现在我被这个异常难住了:A first chance exception of type 'System.NullReferenceExcept
我正在尝试 Ormlite。我发现当我插入一个带有 DateTime 属性的对象时,ormlite 应用它得到 -8:00 (我的时区是 +8)。应按字面意思插入时间。就我而言,它已经是 UTC。 但
我正在对现有的 SQL Server 数据库使用 OrmLite,该数据库已发布用于访问的存储过程。这些 SP 之一采用 3 个 int 参数,但期望其中一个或另一个为空。但是,没有任何参数被声明为可
我正在为数据可视化做一些查询,并依靠 GroupBy、Avg、Sum 和类似函数从数据库中获取良好的数据集。 我想在 ServiceStack OrmLite 中使用类似于 GroupBy 的东西。关
我希望使用 ORMLite 按多个别名表进行分组,但我似乎遇到了问题。 当在 SqlExpression 的 GroupBy 中使用具有匿名类型的 Sql.TableAlias 时,为 group b
这个周末我才第一次发现 ServiceStack,我觉得它非常棒。因此,我已经在将我所有的项目转换为它。然后我遇到了一个小障碍。 我找不到任何提到使用 OrmLite 首先从数据库开始然后将现有模式映
我是一名优秀的程序员,十分优秀!