Update BaseMongoRepository.Index.cs

This commit is contained in:
Alexandre SPIESER
2019-04-17 19:00:33 +01:00
committed by GitHub
parent 6c8d4bdafb
commit bd662d25d6
@@ -113,7 +113,7 @@ namespace MongoDbGenericRepository
public abstract partial class BaseMongoRepository : IBaseMongoRepository_Index public abstract partial class BaseMongoRepository : IBaseMongoRepository_Index
{ {
private MongoDbIndexHandler _mongoDbIndexHandler; private MongoDbIndexHandler _mongoDbIndexHandler;
protected MongoDbIndexHandler MongoDbIndexHandler protected virtual MongoDbIndexHandler MongoDbIndexHandler
{ {
get get
{ {
@@ -128,6 +128,7 @@ namespace MongoDbGenericRepository
} }
return _mongoDbIndexHandler; return _mongoDbIndexHandler;
} }
set { _mongoDbIndexHandler = value; }
} }
/// <summary> /// <summary>