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
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());