标签: flutter dart sqflite
我有这样的实体结构:
class Recipe { num id; String title; List<Ingredient> ingredients; ... } class Ingredient { num id; String name; ... }
如何使用sqflite在本地通过配料列表检索配方记录?