MongoDB IRepository 数据库连接

发布于 2024-11-09 13:55:11 字数 678 浏览 0 评论 0原文

这就是我到目前为止关于 MongoDB 的 IRepository 的情况,我想知道我是否走对了路?

public abstract class Repository<TEntity> : IRepository<TEntity> {

    private const string _connection = "mongodb://localhost:27017/?safe=true";
    private MongoDatabase _db;
    protected abstract string _collection{get;}

    public Repository() {
        this._db = MongoServer.Create(_connection).GetDatabase("Photos");
    }

    public IQueryable<TEntity> FindAll() {

        return this._db.GetCollection<TEntity>(_collection).FindAll().AsQueryable();
    }
}

这样我就可以创建从此处继承的 PhotoRepository 类并提供所需的 _collection 名称。

我只是想确保在正确的位置以正确的方式打开与数据库的连接。

This is what I have so far with regards to my IRepository for MongoDB and was wondering whether or not I'm on the right lines?

public abstract class Repository<TEntity> : IRepository<TEntity> {

    private const string _connection = "mongodb://localhost:27017/?safe=true";
    private MongoDatabase _db;
    protected abstract string _collection{get;}

    public Repository() {
        this._db = MongoServer.Create(_connection).GetDatabase("Photos");
    }

    public IQueryable<TEntity> FindAll() {

        return this._db.GetCollection<TEntity>(_collection).FindAll().AsQueryable();
    }
}

This way I can create my PhotoRepository class that inherits from here and supplies the required _collection name.

I just want to make sure that I'm opening the connection to the db in the correct place and in the correct way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海的爱人是光 2024-11-16 13:55:11

是的,这很好。当传递相同的连接字符串时,MongoServer.Create 将返回相同的 MongoServer 实例,因此可以安全地根据需要多次调用 MongoServer.Create。

Yes, this is fine. MongoServer.Create will return the same instance of MongoServer when passed the same connection string, so it is safe to call MongoServer.Create as many times as you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文