如何使用嵌套列表保存记录?

时间:2019-12-01 11:03:14

标签: flutter dart sqflite

我有这样的实体结构:

class Recipe {
num id;
String title;
List<Ingredient> ingredients;
...
}

class Ingredient {
num id;
String name;
...
}

如何使用sqflite在本地通过配料列表检索配方记录?

0 个答案:

没有答案