We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e79a50 commit 5b55e46Copy full SHA for 5b55e46
tests/Tests.Rqlite.Client/Helpers.cs
@@ -39,7 +39,7 @@ public static Func<HttpRequestMessage, Task<Result<List<QueryResponseResult<T>>>
39
}
40
41
public static Result<List<QueryResponseResult<T>>> GetQueryResponseResult<T>(T[] value) =>
42
- new List<QueryResponseResult<T>> { new() { Rows = value.ToList() } };
+ new List<QueryResponseResult<T>> { new() { Rows = [.. value] } };
43
44
#endregion
45
0 commit comments