Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add new ef methods and some raw sql execution methods #12

Merged
merged 3 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("GenericRepository.Tests")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+dc89b2d70f09714087814b4ec5fc6c22a56a217f")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ed492562eb679f2f0c779228516e345e29cb3f29")]
[assembly: System.Reflection.AssemblyProductAttribute("GenericRepository.Tests")]
[assembly: System.Reflection.AssemblyTitleAttribute("GenericRepository.Tests")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2bfeda5519a7cdd63e4dc3d7b60d9400c12620d77daefc10557e0599b65eaf5d
393db6154241468ab21270c1ecf289861edb70a371b63523943b35762ba3dac9
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,14 @@
"net8.0": {
"targetAlias": "net8.0",
"dependencies": {
"EFCore.BulkExtensions": {
"target": "Package",
"version": "[8.1.1, )"
},
"EntityFramework.BulkExtensions": {
"target": "Package",
"version": "[1.0.0, )"
},
"MediatR": {
"target": "Package",
"version": "[12.2.0, )"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/Users/macbook/.nuget/packages/xunit.analyzers/1.0.0</Pkgxunit_analyzers>
<PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">/Users/macbook/.nuget/packages/newtonsoft.json/9.0.1</PkgNewtonsoft_Json>
<PkgEntityFramework Condition=" '$(PkgEntityFramework)' == '' ">/Users/macbook/.nuget/packages/entityframework/6.1.3</PkgEntityFramework>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)xunit.core/2.4.2/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)xunit.core/2.4.2/build/xunit.core.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)system.text.json/8.0.4/buildTransitive/net6.0/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/8.0.4/buildTransitive/net6.0/System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.codecoverage/17.3.2/build/netstandard1.0/Microsoft.CodeCoverage.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage/17.3.2/build/netstandard1.0/Microsoft.CodeCoverage.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk/17.3.2/build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk/17.3.2/build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets')" />
<Import Project="$(NuGetPackageRoot)coverlet.collector/3.1.2/build/netstandard1.0/coverlet.collector.targets" Condition="Exists('$(NuGetPackageRoot)coverlet.collector/3.1.2/build/netstandard1.0/coverlet.collector.targets')" />
Expand Down
Loading
Loading