nuget package works locally
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.2" />
|
||||
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.2" />
|
||||
<PackageReference Include="MongoDB.Driver" Version="2.9.3" />
|
||||
<PackageReference Include="MongoDbGenericRepository" Version="1.4.4" />
|
||||
<PackageReference Include="xunit" Version="2.4.1" />
|
||||
<PackageReference Include="xunit.runner.console" Version="2.4.1">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
@@ -17,10 +18,6 @@
|
||||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-beta4-build3742" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\MongoDbGenericRepository\MongoDbGenericRepository.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="System.Configuration">
|
||||
<HintPath>..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.Configuration.dll</HintPath>
|
||||
|
||||
@@ -49,8 +49,8 @@
|
||||
<Reference Include="MongoDB.Driver.Core, Version=2.9.3.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MongoDB.Driver.Core.2.9.3\lib\net452\MongoDB.Driver.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="MongoDbGenericRepository, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MongoDbGenericRepository.1.4.3\lib\net452\MongoDbGenericRepository.dll</HintPath>
|
||||
<Reference Include="MongoDbGenericRepository, Version=1.4.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MongoDbGenericRepository.1.4.4\lib\net452\MongoDbGenericRepository.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="nunit.framework, Version=3.12.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll</HintPath>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<package id="MongoDB.Bson" version="2.9.3" targetFramework="net461" />
|
||||
<package id="MongoDB.Driver" version="2.9.3" targetFramework="net461" />
|
||||
<package id="MongoDB.Driver.Core" version="2.9.3" targetFramework="net461" />
|
||||
<package id="MongoDbGenericRepository" version="1.4.3" targetFramework="net461" />
|
||||
<package id="MongoDbGenericRepository" version="1.4.4" targetFramework="net461" />
|
||||
<package id="NUnit" version="3.12.0" targetFramework="net461" />
|
||||
<package id="NUnit.ConsoleRunner" version="3.10.0" targetFramework="net461" />
|
||||
<package id="NUnit3TestAdapter" version="3.15.1" targetFramework="net461" />
|
||||
|
||||
@@ -3,13 +3,20 @@
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net452;netstandard2.0;netstandard1.5;</TargetFrameworks>
|
||||
<PackageId>MongoDbGenericRepository</PackageId>
|
||||
<PackageVersion>1.2.0</PackageVersion>
|
||||
<PackageVersion>1.4.4</PackageVersion>
|
||||
<Authors>Alexandre Spieser</Authors>
|
||||
<PackageTitle>MongoDb Generic Repository</PackageTitle>
|
||||
<Description>A generic repository implementation using the MongoDB C# Sharp 2.0 driver.</Description>
|
||||
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
|
||||
<PackageProjectUrl>http://www.opensource.org/licenses/mit-license.php</PackageProjectUrl>
|
||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||
<PackageReleaseNotes>.NET Core supported.</PackageReleaseNotes>
|
||||
<Copyright>Copyright 2017 (c) Alexandre Spieser. All rights reserved.</Copyright>
|
||||
<PackageTags>MongoDb Repository NoSql Generic</PackageTags>
|
||||
<PackageReleaseNotes>Release notes are at https://github.com/alexandre-spieser/mongodb-generic-repository/releases </PackageReleaseNotes>
|
||||
<Copyright>Copyright 2020 (c) Alexandre Spieser. All rights reserved.</Copyright>
|
||||
<PackageTags>MongoDb Repository Generic NoSql</PackageTags>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<Version>1.4.4</Version>
|
||||
<RepositoryUrl>https://github.com/alexandre-spieser/mongodb-generic-repository</RepositoryUrl>
|
||||
<RepositoryType>Git</RepositoryType>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
|
||||
@@ -20,6 +27,10 @@
|
||||
<DocumentationFile></DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'">
|
||||
<DocumentationFile>D:\development\mongodb-generic-repository\MongoDbGenericRepository\MongoDbGenericRepository.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MongoDB.Driver" Version="2.9.3" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<package >
|
||||
<metadata>
|
||||
<id>MongoDbGenericRepository</id>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.4</version>
|
||||
<title>MongoDb Generic Repository</title>
|
||||
<authors>Alexandre Spieser</authors>
|
||||
<owners>Alexandre Spieser</owners>
|
||||
@@ -11,7 +11,7 @@
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>A generic repository implementation using the MongoDB C# Sharp 2.0 driver.</description>
|
||||
<releaseNotes>Release notes are at https://github.com/alexandre-spieser/mongodb-generic-repository/releases</releaseNotes>
|
||||
<copyright>Copyright 2019 (c) Alexandre Spieser. All rights reserved.</copyright>
|
||||
<copyright>Copyright 2020 (c) Alexandre Spieser. All rights reserved.</copyright>
|
||||
<tags>MongoDb Repository Generic NoSql</tags>
|
||||
<dependencies>
|
||||
<group targetFramework=".NETFramework4.5.2">
|
||||
|
||||
@@ -155,6 +155,94 @@
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateManyAsync``3(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateManyAsync``3(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateManyAsync``2(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateManyAsync``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateMany``3(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateMany``3(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateMany``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update.UpdateMany``2(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.IBaseMongoRepository_Update_ClientSession.UpdateOne``3(MongoDB.Driver.IClientSessionHandle,System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String,System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Updates a document.
|
||||
@@ -527,6 +615,87 @@
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.MongoDbUpdater.UpdateManyAsync``3(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.MongoDbUpdater.UpdateManyAsync``3(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.MongoDbUpdater.UpdateManyAsync``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, apply the update definition.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.MongoDbUpdater.UpdateManyAsync``2(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, apply the update definition.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.MongoDbUpdater.UpdateMany``3(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.MongoDbUpdater.UpdateMany``3(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Update.MongoDbUpdater.UpdateMany``2(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, apply the update definition.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="UpdateDefinition">The update definition.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.DataAccess.Base.DataAccessBase.HandlePartitioned``2(``0)">
|
||||
<summary>
|
||||
Gets a collections for a potentially partitioned document type.
|
||||
@@ -2506,6 +2675,87 @@
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``2(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``1(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``2(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``1(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateOneAsync``2(``0)">
|
||||
<summary>
|
||||
Asynchronously Updates a document.
|
||||
@@ -2610,6 +2860,94 @@
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``3(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``3(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``2(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateManyAsync``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``3(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``3(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``2}},``2,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository.UpdateMany``2(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TKey">The type of the primary key for a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Delete.DeleteOne``2(``0)">
|
||||
<summary>
|
||||
Deletes a document.
|
||||
@@ -3142,6 +3480,86 @@
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateManyAsync``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateManyAsync``2(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateManyAsync``1(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateManyAsync``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateMany``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateMany``2(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateMany``1(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.BaseMongoRepository`1.UpdateMany``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="T:MongoDbGenericRepository.IBaseMongoRepository_Delete`1">
|
||||
<summary>
|
||||
The interface exposing deletion functionality for Key typed repositories.
|
||||
@@ -3733,6 +4151,86 @@
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateManyAsync``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateManyAsync``2(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateManyAsync``1(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateManyAsync``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateMany``2(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The partition key for the document.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateMany``2(MongoDB.Driver.FilterDefinition{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, updates the property field with the given value.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<typeparam name="TField">The type of the field.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="field">The field selector.</param>
|
||||
<param name="value">The new value of the property field.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateMany``1(MongoDB.Driver.FilterDefinition{``0},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="M:MongoDbGenericRepository.IBaseMongoRepository_Update`1.UpdateMany``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},MongoDB.Driver.UpdateDefinition{``0},System.String)">
|
||||
<summary>
|
||||
For the entities selected by the filter, applies the update you have defined in MongoDb.
|
||||
</summary>
|
||||
<typeparam name="TDocument">The type representing a Document.</typeparam>
|
||||
<param name="filter">The document filter.</param>
|
||||
<param name="updateDefinition">The update definition to apply.</param>
|
||||
<param name="partitionKey">The value of the partition key.</param>
|
||||
</member>
|
||||
<member name="T:MongoDbGenericRepository.Models.Document">
|
||||
<summary>
|
||||
This class represents a basic document that can be stored in MongoDb.
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user