mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
21 lines
584 B
C#
21 lines
584 B
C#
using Microsoft.Extensions.Configuration;
|
|
using MongoDB.Driver;
|
|
|
|
namespace ShoppingAssistantApi.Persistance.Database;
|
|
|
|
public class MongoDbContext
|
|
{
|
|
private readonly MongoClient _client;
|
|
|
|
private readonly IMongoDatabase _db;
|
|
|
|
public MongoDbContext(IConfiguration configuration)
|
|
{
|
|
this._client = new MongoClient(configuration.GetConnectionString("MongoDb"));
|
|
this._db = this._client.GetDatabase(configuration.GetConnectionString("MongoDatabaseName"));
|
|
}
|
|
|
|
public IMongoDatabase Db => this._db;
|
|
|
|
public MongoClient Client => this._client;
|
|
} |