gpt4 book ai didi

java - 将一个存储库用于多个 Dao 是 MVVM 的最佳实践吗?

转载 作者:行者123 更新时间:2023-11-29 23:08:47 25 4
gpt4 key购买 nike

我正在尝试使用 MVVM 设计模式构建 Android 应用程序。我目前为 3 种不同类型的 PostType 创建了 3 种类型的 Dao(Dao1、Dao2、Dao3),使用 Realm 作为数据库。我的 3 个 Daos 看起来很相似,但包含具有一些相同变量的对象,但也有许多不同的变量。

class Dao1(db: Realm) : Dao<PostType1>(db) {

fun findAllAsync(): LiveData<RealmResults< PostType1 >> {
return RealmResultsLiveData(where().findAllAsync())
}

fun findById(id: Int): LiveData< PostType1 >? {
return RealmLiveData(where().equalTo("id", id).findFirst())
}

private fun where(): RealmQuery<CTDCastaway> {
return db.where(PostType1::class.java)
}
}

我想弄清楚我是否应该为每个 Dao 创建一个存储库或 1 个来统治它们。

class PostRepositary private constructor(val postsDao1: Dao1?){
fun getDao1Posts() = postsDao1?.findAllAsync()
fun getDao1PostById(entityId: Int) = postsDao1?.getById(entityId)

companion object{
@Volatile private var instance:PostRepositary? = null
fun getWildlifeInstance(postsDao1: Dao1) =
instance ?: synchronized(this){
instance ?: PostRepositary(postsDao1).also {
instance = it
}
}
}
}

考虑到它们共享一些共同属性,我应该为每种帖子类型创建 1 个存储库还是为所有 3 种帖子类型创建 1 个存储库?

我将如何为多个 Daos 创建一个单一的存储库?

任何指向与此相关的文档的链接将不胜感激。

最佳答案

两个 daos 一个存储库的示例

public class CardRepositoryDummy {

private final CardDao cardDao;
private final UserDao userDao;
private LiveData<List<Card>> cardListLiveData;
private DbHelper db;
private int keystage;
private static final String TAG = "CardRepo";

public CardRepositoryDummy(Application application) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(application);
keystage = sharedPreferences.getInt(Constants.SHARED_PREF_CARD_KEYSTAGE,0);
db = DatabaseBuilder.getDatabase(application);
cardDao = db.cardDaoLive();
userDao = db.userDao();
}

public CardRepositoryDummy(Context application) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(application);
keystage = sharedPreferences.getInt(Constants.SHARED_PREF_CARD_KEYSTAGE,0);
db = DatabaseBuilder.getDatabase(application);
cardDao = db.cardDaoLive();
userDao = db.userDao();
}

关于java - 将一个存储库用于多个 Dao 是 MVVM 的最佳实践吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56261838/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com