You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
567 B

using MongoDB.Driver;
using Pursue.Extension.MongoDB;
using Znyc.Admin.MongoDb.Core.Collection;
namespace Znyc.Admin.MongoDb
{
public class MongoContext : MongoDbContext
{
// 使用默认构造(DI配置)
public MongoContext() : base() { }
// 也可以使用手工配置
public MongoContext(string Link, string DataBaseName) : base(Link, DataBaseName) { }
// 上下文模式可以注入需要操作的实体对象和EF一样
public IMongoCollection<GpsRealTime> GpsRealTime => DbSet<GpsRealTime>();
}
}