Exposed core MongoDb driver objects and removed the AddedAtUtc property constraint from the IDocument interface.
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0-preview-20170810-02" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0-preview-20170810-02" />
|
||||||
<PackageReference Include="MongoDB.Driver" Version="2.4.4" />
|
<PackageReference Include="MongoDB.Driver" Version="2.4.4" />
|
||||||
<PackageReference Include="MongoDbGenericRepository" Version="1.2.0" />
|
<PackageReference Include="MongoDbGenericRepository" Version="1.2.1" />
|
||||||
<PackageReference Include="xunit" Version="2.3.0-beta5-build3769" />
|
<PackageReference Include="xunit" Version="2.3.0-beta5-build3769" />
|
||||||
<PackageReference Include="xunit.runner.console" Version="2.3.0-beta5-build3769" />
|
<PackageReference Include="xunit.runner.console" Version="2.3.0-beta5-build3769" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta5-build3769" />
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta5-build3769" />
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ namespace IntegrationTests.Infrastructure
|
|||||||
{
|
{
|
||||||
|
|
||||||
const string connectionString = "mongodb://localhost:27017";
|
const string connectionString = "mongodb://localhost:27017";
|
||||||
private static readonly ITestRepository instance = new TestRepository(connectionString, "MongoDbTests");
|
private static readonly ITestRepository _instance = new TestRepository(connectionString, "MongoDbTests");
|
||||||
|
|
||||||
// Explicit static constructor to tell C# compiler
|
// Explicit static constructor to tell C# compiler
|
||||||
// not to mark type as beforefieldinit
|
// not to mark type as beforefieldinit
|
||||||
@@ -26,7 +26,7 @@ namespace IntegrationTests.Infrastructure
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return instance;
|
return _instance;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -31,16 +31,16 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="MongoDB.Bson, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="MongoDB.Bson, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MongoDbGenericRepository.1.2.0\lib\net45\MongoDB.Bson.dll</HintPath>
|
<HintPath>..\packages\MongoDbGenericRepository.1.2.1\lib\net45\MongoDB.Bson.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MongoDB.Driver, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="MongoDB.Driver, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MongoDbGenericRepository.1.2.0\lib\net45\MongoDB.Driver.dll</HintPath>
|
<HintPath>..\packages\MongoDbGenericRepository.1.2.1\lib\net45\MongoDB.Driver.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MongoDB.Driver.Core, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="MongoDB.Driver.Core, Version=2.4.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MongoDbGenericRepository.1.2.0\lib\net45\MongoDB.Driver.Core.dll</HintPath>
|
<HintPath>..\packages\MongoDbGenericRepository.1.2.1\lib\net45\MongoDB.Driver.Core.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MongoDbGenericRepository, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="MongoDbGenericRepository, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MongoDbGenericRepository.1.2.0\lib\net45\MongoDbGenericRepository.dll</HintPath>
|
<HintPath>..\packages\MongoDbGenericRepository.1.2.1\lib\net45\MongoDbGenericRepository.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="nunit.framework, Version=3.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
|
<Reference Include="nunit.framework, Version=3.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\NUnit.3.7.1\lib\net45\nunit.framework.dll</HintPath>
|
<HintPath>..\packages\NUnit.3.7.1\lib\net45\nunit.framework.dll</HintPath>
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MongoDbGenericRepository.1.2.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
|
<HintPath>..\packages\MongoDbGenericRepository.1.2.1\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<package id="MongoDB.Bson" version="2.4.4" targetFramework="net461" />
|
<package id="MongoDB.Bson" version="2.4.4" targetFramework="net461" />
|
||||||
<package id="MongoDB.Driver" version="2.4.4" targetFramework="net461" />
|
<package id="MongoDB.Driver" version="2.4.4" targetFramework="net461" />
|
||||||
<package id="MongoDB.Driver.Core" version="2.4.4" targetFramework="net461" />
|
<package id="MongoDB.Driver.Core" version="2.4.4" targetFramework="net461" />
|
||||||
<package id="MongoDbGenericRepository" version="1.2.0" targetFramework="net461" />
|
<package id="MongoDbGenericRepository" version="1.2.1" targetFramework="net461" />
|
||||||
<package id="NUnit" version="3.7.1" targetFramework="net461" />
|
<package id="NUnit" version="3.7.1" targetFramework="net461" />
|
||||||
<package id="NUnit.ConsoleRunner" version="3.7.0" targetFramework="net461" />
|
<package id="NUnit.ConsoleRunner" version="3.7.0" targetFramework="net461" />
|
||||||
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.0.0" targetFramework="net461" />
|
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.0.0" targetFramework="net461" />
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IntegrationTests", "Integra
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MongoDbGenericRepository", "MongoDbGenericRepository\MongoDbGenericRepository.csproj", "{EFC776C4-2AF3-440C-BE80-3FBE335817A5}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MongoDbGenericRepository", "MongoDbGenericRepository\MongoDbGenericRepository.csproj", "{EFC776C4-2AF3-440C-BE80-3FBE335817A5}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoreIntegrationTests", "CoreIntegrationTests\CoreIntegrationTests.csproj", "{C640C106-7A25-4E49-A0CF-E4F248E5A97F}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreIntegrationTests", "CoreIntegrationTests\CoreIntegrationTests.csproj", "{C640C106-7A25-4E49-A0CF-E4F248E5A97F}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
|||||||
@@ -801,11 +801,6 @@ namespace MongoDbGenericRepository
|
|||||||
{
|
{
|
||||||
document.Id = Guid.NewGuid();
|
document.Id = Guid.NewGuid();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (document.AddedAtUtc == default(DateTime))
|
|
||||||
{
|
|
||||||
document.AddedAtUtc = DateTime.UtcNow;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -8,6 +8,16 @@ namespace MongoDbGenericRepository
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IMongoDbContext
|
public interface IMongoDbContext
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The IMongoClient from the official MongoDb driver
|
||||||
|
/// </summary>
|
||||||
|
IMongoClient Client { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The IMongoDatabase from the official Mongodb driver
|
||||||
|
/// </summary>
|
||||||
|
IMongoDatabase Database { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The private GetCollection method
|
/// The private GetCollection method
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -8,10 +8,6 @@ namespace MongoDbGenericRepository.Models
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IDocument
|
public interface IDocument
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// The date and UTC time at which the document was added to the collection.
|
|
||||||
/// </summary>
|
|
||||||
DateTime AddedAtUtc { get; set; }
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Guid, which must be decorated with the [BsonId] attribute
|
/// The Guid, which must be decorated with the [BsonId] attribute
|
||||||
/// if you want the MongoDb C# driver to consider it to be the document ID.
|
/// if you want the MongoDb C# driver to consider it to be the document ID.
|
||||||
|
|||||||
@@ -8,8 +8,15 @@ namespace MongoDbGenericRepository
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class MongoDbContext : IMongoDbContext
|
public class MongoDbContext : IMongoDbContext
|
||||||
{
|
{
|
||||||
private readonly IMongoClient _client;
|
/// <summary>
|
||||||
private readonly IMongoDatabase _database;
|
/// The IMongoClient from the official MongoDb driver
|
||||||
|
/// </summary>
|
||||||
|
public IMongoClient Client { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The IMongoDatabase from the official Mongodb driver
|
||||||
|
/// </summary>
|
||||||
|
public IMongoDatabase Database { get; }
|
||||||
|
|
||||||
static MongoDbContext()
|
static MongoDbContext()
|
||||||
{
|
{
|
||||||
@@ -17,15 +24,25 @@ namespace MongoDbGenericRepository
|
|||||||
MongoDefaults.GuidRepresentation = MongoDB.Bson.GuidRepresentation.Standard;
|
MongoDefaults.GuidRepresentation = MongoDB.Bson.GuidRepresentation.Standard;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The constructor of the MongoDbContext, it needs a an object implementing <see cref="IMongoDatabase"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="mongoDatabase">An object implementing IMongoDatabase</param>
|
||||||
|
public MongoDbContext(IMongoDatabase mongoDatabase)
|
||||||
|
{
|
||||||
|
Database = mongoDatabase;
|
||||||
|
Client = Database.Client;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The constructor of the MongoDbContext, it needs a connection string and a database name.
|
/// The constructor of the MongoDbContext, it needs a connection string and a database name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="connectionString"></param>
|
/// <param name="connectionString">The connections string.</param>
|
||||||
/// <param name="databaseName"></param>
|
/// <param name="databaseName">The name of your database.</param>
|
||||||
public MongoDbContext(string connectionString, string databaseName)
|
public MongoDbContext(string connectionString, string databaseName)
|
||||||
{
|
{
|
||||||
_client = new MongoClient(connectionString);
|
Client = new MongoClient(connectionString);
|
||||||
_database = _client.GetDatabase(databaseName);
|
Database = Client.GetDatabase(databaseName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -35,7 +52,7 @@ namespace MongoDbGenericRepository
|
|||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IMongoCollection<TDocument> GetCollection<TDocument>()
|
public IMongoCollection<TDocument> GetCollection<TDocument>()
|
||||||
{
|
{
|
||||||
return _database.GetCollection<TDocument>(Pluralize<TDocument>());
|
return Database.GetCollection<TDocument>(Pluralize<TDocument>());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -45,7 +62,7 @@ namespace MongoDbGenericRepository
|
|||||||
/// <param name="partitionKey">The value of the partition key.</param>
|
/// <param name="partitionKey">The value of the partition key.</param>
|
||||||
public IMongoCollection<TDocument> GetCollection<TDocument>(string partitionKey) where TDocument : IDocument
|
public IMongoCollection<TDocument> GetCollection<TDocument>(string partitionKey) where TDocument : IDocument
|
||||||
{
|
{
|
||||||
return _database.GetCollection<TDocument>(partitionKey +"-"+ Pluralize<TDocument>());
|
return Database.GetCollection<TDocument>(partitionKey +"-"+ Pluralize<TDocument>());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -54,7 +71,7 @@ namespace MongoDbGenericRepository
|
|||||||
/// <typeparam name="TDocument"></typeparam>
|
/// <typeparam name="TDocument"></typeparam>
|
||||||
public void DropCollection<TDocument>()
|
public void DropCollection<TDocument>()
|
||||||
{
|
{
|
||||||
_database.DropCollection(Pluralize<TDocument>());
|
Database.DropCollection(Pluralize<TDocument>());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -63,7 +80,7 @@ namespace MongoDbGenericRepository
|
|||||||
/// <typeparam name="TDocument"></typeparam>
|
/// <typeparam name="TDocument"></typeparam>
|
||||||
public void DropCollection<TDocument>(string partitionKey)
|
public void DropCollection<TDocument>(string partitionKey)
|
||||||
{
|
{
|
||||||
_database.DropCollection(partitionKey + "-" + Pluralize<TDocument>());
|
Database.DropCollection(partitionKey + "-" + Pluralize<TDocument>());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<package >
|
<package >
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>MongoDbGenericRepository</id>
|
<id>MongoDbGenericRepository</id>
|
||||||
<version>1.2</version>
|
<version>1.2.1</version>
|
||||||
<title>MongoDb Generic Repository</title>
|
<title>MongoDb Generic Repository</title>
|
||||||
<authors>Alexandre Spieser</authors>
|
<authors>Alexandre Spieser</authors>
|
||||||
<owners>Alexandre Spieser</owners>
|
<owners>Alexandre Spieser</owners>
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
<projectUrl>https://github.com/alexandre-spieser/mongodb-generic-repository</projectUrl>
|
<projectUrl>https://github.com/alexandre-spieser/mongodb-generic-repository</projectUrl>
|
||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
<description>A generic repository implementation using the MongoDB C# Sharp 2.0 driver.</description>
|
<description>A generic repository implementation using the MongoDB C# Sharp 2.0 driver.</description>
|
||||||
<releaseNotes>.NET Core support added.</releaseNotes>
|
<releaseNotes>Exposed core MongoDb driver objects and removed the AddedAtUtc property constraint from the IDocument interface.</releaseNotes>
|
||||||
<copyright>Copyright 2017 (c) Alexandre Spieser. All rights reserved.</copyright>
|
<copyright>Copyright 2017 (c) Alexandre Spieser. All rights reserved.</copyright>
|
||||||
<tags>MongoDb Repository Generic NoSql</tags>
|
<tags>MongoDb Repository Generic NoSql</tags>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|||||||
Binary file not shown.
@@ -561,6 +561,16 @@
|
|||||||
This is the interface of the IMongoDbContext which is managed by the <see cref="T:MongoDbGenericRepository.BaseMongoRepository"/>.
|
This is the interface of the IMongoDbContext which is managed by the <see cref="T:MongoDbGenericRepository.BaseMongoRepository"/>.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.IMongoDbContext.Client">
|
||||||
|
<summary>
|
||||||
|
The IMongoClient from the official MongoDb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.IMongoDbContext.Database">
|
||||||
|
<summary>
|
||||||
|
The IMongoDatabase from the official Mongodb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.IMongoDbContext.GetCollection``1">
|
<member name="M:MongoDbGenericRepository.IMongoDbContext.GetCollection``1">
|
||||||
<summary>
|
<summary>
|
||||||
The private GetCollection method
|
The private GetCollection method
|
||||||
@@ -618,11 +628,6 @@
|
|||||||
Your document must implement this class in order for the MongoDbRepository to handle them.
|
Your document must implement this class in order for the MongoDbRepository to handle them.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:MongoDbGenericRepository.Models.IDocument.AddedAtUtc">
|
|
||||||
<summary>
|
|
||||||
The date and UTC time at which the document was added to the collection.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:MongoDbGenericRepository.Models.IDocument.Id">
|
<member name="P:MongoDbGenericRepository.Models.IDocument.Id">
|
||||||
<summary>
|
<summary>
|
||||||
The Guid, which must be decorated with the [BsonId] attribute
|
The Guid, which must be decorated with the [BsonId] attribute
|
||||||
@@ -673,12 +678,28 @@
|
|||||||
The MongoDb context
|
The MongoDb context
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.MongoDbContext.Client">
|
||||||
|
<summary>
|
||||||
|
The IMongoClient from the official MongoDb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.MongoDbContext.Database">
|
||||||
|
<summary>
|
||||||
|
The IMongoDatabase from the official Mongodb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(MongoDB.Driver.IMongoDatabase)">
|
||||||
|
<summary>
|
||||||
|
The constructor of the MongoDbContext, it needs a an object implementing <see cref="T:MongoDB.Driver.IMongoDatabase"/>.
|
||||||
|
</summary>
|
||||||
|
<param name="mongoDatabase">An object implementing IMongoDatabase</param>
|
||||||
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(System.String,System.String)">
|
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(System.String,System.String)">
|
||||||
<summary>
|
<summary>
|
||||||
The constructor of the MongoDbContext, it needs a connection string and a database name.
|
The constructor of the MongoDbContext, it needs a connection string and a database name.
|
||||||
</summary>
|
</summary>
|
||||||
<param name="connectionString"></param>
|
<param name="connectionString">The connections string.</param>
|
||||||
<param name="databaseName"></param>
|
<param name="databaseName">The name of your database.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.MongoDbContext.GetCollection``1">
|
<member name="M:MongoDbGenericRepository.MongoDbContext.GetCollection``1">
|
||||||
<summary>
|
<summary>
|
||||||
|
|||||||
Binary file not shown.
@@ -561,6 +561,16 @@
|
|||||||
This is the interface of the IMongoDbContext which is managed by the <see cref="T:MongoDbGenericRepository.BaseMongoRepository"/>.
|
This is the interface of the IMongoDbContext which is managed by the <see cref="T:MongoDbGenericRepository.BaseMongoRepository"/>.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.IMongoDbContext.Client">
|
||||||
|
<summary>
|
||||||
|
The IMongoClient from the official MongoDb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.IMongoDbContext.Database">
|
||||||
|
<summary>
|
||||||
|
The IMongoDatabase from the official Mongodb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.IMongoDbContext.GetCollection``1">
|
<member name="M:MongoDbGenericRepository.IMongoDbContext.GetCollection``1">
|
||||||
<summary>
|
<summary>
|
||||||
The private GetCollection method
|
The private GetCollection method
|
||||||
@@ -618,11 +628,6 @@
|
|||||||
Your document must implement this class in order for the MongoDbRepository to handle them.
|
Your document must implement this class in order for the MongoDbRepository to handle them.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:MongoDbGenericRepository.Models.IDocument.AddedAtUtc">
|
|
||||||
<summary>
|
|
||||||
The date and UTC time at which the document was added to the collection.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:MongoDbGenericRepository.Models.IDocument.Id">
|
<member name="P:MongoDbGenericRepository.Models.IDocument.Id">
|
||||||
<summary>
|
<summary>
|
||||||
The Guid, which must be decorated with the [BsonId] attribute
|
The Guid, which must be decorated with the [BsonId] attribute
|
||||||
@@ -673,12 +678,28 @@
|
|||||||
The MongoDb context
|
The MongoDb context
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.MongoDbContext.Client">
|
||||||
|
<summary>
|
||||||
|
The IMongoClient from the official MongoDb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.MongoDbContext.Database">
|
||||||
|
<summary>
|
||||||
|
The IMongoDatabase from the official Mongodb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(MongoDB.Driver.IMongoDatabase)">
|
||||||
|
<summary>
|
||||||
|
The constructor of the MongoDbContext, it needs a an object implementing <see cref="T:MongoDB.Driver.IMongoDatabase"/>.
|
||||||
|
</summary>
|
||||||
|
<param name="mongoDatabase">An object implementing IMongoDatabase</param>
|
||||||
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(System.String,System.String)">
|
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(System.String,System.String)">
|
||||||
<summary>
|
<summary>
|
||||||
The constructor of the MongoDbContext, it needs a connection string and a database name.
|
The constructor of the MongoDbContext, it needs a connection string and a database name.
|
||||||
</summary>
|
</summary>
|
||||||
<param name="connectionString"></param>
|
<param name="connectionString">The connections string.</param>
|
||||||
<param name="databaseName"></param>
|
<param name="databaseName">The name of your database.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.MongoDbContext.GetCollection``1">
|
<member name="M:MongoDbGenericRepository.MongoDbContext.GetCollection``1">
|
||||||
<summary>
|
<summary>
|
||||||
|
|||||||
Binary file not shown.
@@ -561,6 +561,16 @@
|
|||||||
This is the interface of the IMongoDbContext which is managed by the <see cref="T:MongoDbGenericRepository.BaseMongoRepository"/>.
|
This is the interface of the IMongoDbContext which is managed by the <see cref="T:MongoDbGenericRepository.BaseMongoRepository"/>.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.IMongoDbContext.Client">
|
||||||
|
<summary>
|
||||||
|
The IMongoClient from the official MongoDb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.IMongoDbContext.Database">
|
||||||
|
<summary>
|
||||||
|
The IMongoDatabase from the official Mongodb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.IMongoDbContext.GetCollection``1">
|
<member name="M:MongoDbGenericRepository.IMongoDbContext.GetCollection``1">
|
||||||
<summary>
|
<summary>
|
||||||
The private GetCollection method
|
The private GetCollection method
|
||||||
@@ -618,11 +628,6 @@
|
|||||||
Your document must implement this class in order for the MongoDbRepository to handle them.
|
Your document must implement this class in order for the MongoDbRepository to handle them.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:MongoDbGenericRepository.Models.IDocument.AddedAtUtc">
|
|
||||||
<summary>
|
|
||||||
The date and UTC time at which the document was added to the collection.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:MongoDbGenericRepository.Models.IDocument.Id">
|
<member name="P:MongoDbGenericRepository.Models.IDocument.Id">
|
||||||
<summary>
|
<summary>
|
||||||
The Guid, which must be decorated with the [BsonId] attribute
|
The Guid, which must be decorated with the [BsonId] attribute
|
||||||
@@ -673,12 +678,28 @@
|
|||||||
The MongoDb context
|
The MongoDb context
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.MongoDbContext.Client">
|
||||||
|
<summary>
|
||||||
|
The IMongoClient from the official MongoDb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:MongoDbGenericRepository.MongoDbContext.Database">
|
||||||
|
<summary>
|
||||||
|
The IMongoDatabase from the official Mongodb driver
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(MongoDB.Driver.IMongoDatabase)">
|
||||||
|
<summary>
|
||||||
|
The constructor of the MongoDbContext, it needs a an object implementing <see cref="T:MongoDB.Driver.IMongoDatabase"/>.
|
||||||
|
</summary>
|
||||||
|
<param name="mongoDatabase">An object implementing IMongoDatabase</param>
|
||||||
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(System.String,System.String)">
|
<member name="M:MongoDbGenericRepository.MongoDbContext.#ctor(System.String,System.String)">
|
||||||
<summary>
|
<summary>
|
||||||
The constructor of the MongoDbContext, it needs a connection string and a database name.
|
The constructor of the MongoDbContext, it needs a connection string and a database name.
|
||||||
</summary>
|
</summary>
|
||||||
<param name="connectionString"></param>
|
<param name="connectionString">The connections string.</param>
|
||||||
<param name="databaseName"></param>
|
<param name="databaseName">The name of your database.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:MongoDbGenericRepository.MongoDbContext.GetCollection``1">
|
<member name="M:MongoDbGenericRepository.MongoDbContext.GetCollection``1">
|
||||||
<summary>
|
<summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user