Remove unnecessary parameter

This commit is contained in:
2025-05-13 17:18:03 +02:00
parent 749c77b6df
commit 438ef3f2fb
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>0.8.2</Version>
<Version>0.8.2.1</Version>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Alexandru Macocian</Authors>
-1
View File
@@ -249,7 +249,6 @@ command.CommandText = @""{placeHolder}"";
var methodBuilder = SyntaxBuilder.CreateMethod($"{Constants.IAsyncEnumerableType}<{context.DboType}>", Constants.FindAllMethodName)
.WithModifiers($"{Constants.Public} {Constants.Async}")
.WithParameter(context.PrimaryKey.PropertyType, Constants.PrimaryKeyArgumentName)
.WithParameter($"[{Constants.EnumeratorCancellationAttribute}] {Constants.CancellationTokenType}", Constants.CancellationTokenArgument)
.WithBody(bodyBuilder.ToString());