From 34a0e9c97e827aabb44a2be9ada40954b3edfc06 Mon Sep 17 00:00:00 2001 From: Hadi Khazaee Asl Date: Fri, 12 Jun 2026 17:24:25 +0330 Subject: [PATCH] fix some Parmas Routing ... --- Interfaces/IXBaseProvidedController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Interfaces/IXBaseProvidedController.cs b/Interfaces/IXBaseProvidedController.cs index 8a31716..123b349 100644 --- a/Interfaces/IXBaseProvidedController.cs +++ b/Interfaces/IXBaseProvidedController.cs @@ -59,7 +59,7 @@ namespace xPushService.Interfaces /// [HttpGet("Find/One")] Task> FindOne( - [FromRoute] string query, + [FromQuery] string query, [FromQuery] bool useDefaultIncludes = false, CancellationToken cancellationToken = default ); @@ -74,7 +74,7 @@ namespace xPushService.Interfaces /// [HttpGet("Find/Many")] Task>> FindMany( - [FromRoute] string query, + [FromQuery] string query, [FromQuery] bool useDefaultOrders = false, [FromQuery] bool useDefaultIncludes = false, CancellationToken cancellationToken = default