您好我正在Xamarin学习Realm,
我试图从Realm获取一个特定的列表。 在主页面上我有一个RecyclerView,我想为不同的RecyclerView项目显示不同的列表项。但我怎样才能得到这些清单?
领域对象:
public class StufeAd : RealmObject
{
public string mName { get; set; }
public int mPhoto { get; set; }
public int mDurchschnitt { get; set; }
public IList<F> mItemlist { get; }
}
public class F : RealmObject
{
public string Name { get; set; }
public int Id { get; set; }
}
项目添加:
var ad = realm.All<StufeAd>().Where(m => m.mName == name).First();
var a = new F { Name = "Test", Id = 11 }; // Input
mFliste.Add(fach);
realm.Write(() =>
{
ad.mItemlist.Add(a);
});
mAdapter.NotifyDataSetChanged();
现在我只想在我添加项目的地方获取列表。
RecyclerView, with the FAB i can add more cards
每个列表显示完全相同。