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