You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using MongoDB.Bson;
|
|
|
|
|
using MongoDB.Driver;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EntrustSettle.Repository.MongoRepository
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class MongoBaseRepository<TEntity> : IMongoBaseRepository<TEntity> where TEntity : class, new()
|
|
|
|
|
{
|
|
|
|
|
private readonly MongoDbContext _context;
|
|
|
|
|
|
|
|
|
|
public MongoBaseRepository()
|
|
|
|
|
{
|
|
|
|
|
_context = new MongoDbContext();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task AddAsync(TEntity entity)
|
|
|
|
|
{
|
|
|
|
|
await _context.Db.GetCollection<TEntity>(typeof(TEntity).Name)
|
|
|
|
|
.InsertOneAsync(entity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<TEntity> GetAsync(int Id)
|
|
|
|
|
{
|
|
|
|
|
var filter = Builders<TEntity>.Filter.Eq("Id", Id);
|
|
|
|
|
|
|
|
|
|
return await _context.Db.GetCollection<TEntity>(typeof(TEntity).Name)
|
|
|
|
|
.Find(filter)
|
|
|
|
|
.FirstOrDefaultAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<TEntity> GetByObjectIdAsync(string Id)
|
|
|
|
|
{
|
|
|
|
|
var filter = Builders<TEntity>.Filter.Eq("_id", ObjectId.Parse(Id));
|
|
|
|
|
|
|
|
|
|
return await _context.Db.GetCollection<TEntity>(typeof(TEntity).Name)
|
|
|
|
|
.Find(filter)
|
|
|
|
|
.FirstOrDefaultAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<List<TEntity>> GetListAsync()
|
|
|
|
|
{
|
|
|
|
|
return await _context.Db.GetCollection<TEntity>(typeof(TEntity).Name)
|
|
|
|
|
.Find(new BsonDocument())
|
|
|
|
|
.ToListAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<List<TEntity>> GetListFilterAsync(FilterDefinition<TEntity> filter)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return await _context.Db.GetCollection<TEntity>(typeof(TEntity).Name)
|
|
|
|
|
.Find(filter).ToListAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|