diff --git a/Controllers/XBaseRepositoryProviderController.cs b/Controllers/XBaseRepositoryProviderController.cs index 2524bea..79892a8 100644 --- a/Controllers/XBaseRepositoryProviderController.cs +++ b/Controllers/XBaseRepositoryProviderController.cs @@ -386,6 +386,7 @@ namespace xPushService.Controllers /// /// /// + [HttpGet("FindOne")] public virtual async Task> FindOne( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -434,6 +435,7 @@ namespace xPushService.Controllers /// /// /// + [HttpGet("FindMany")] public virtual async Task>> FindMany( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -486,6 +488,7 @@ namespace xPushService.Controllers /// /// /// + [HttpGet("Query")] public virtual async Task>> Query( [FromQuery] XQuery query, [FromQuery] bool ignoreSoftDeleteds = true, diff --git a/Controllers/XBaseServiceProviderController.cs b/Controllers/XBaseServiceProviderController.cs index d169dbe..2f8cb19 100644 --- a/Controllers/XBaseServiceProviderController.cs +++ b/Controllers/XBaseServiceProviderController.cs @@ -390,6 +390,7 @@ namespace xPushService.Controllers /// /// /// + [HttpGet("FindOne")] public virtual async Task> FindOne( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -438,6 +439,7 @@ namespace xPushService.Controllers /// /// /// + [HttpGet("FindMany")] public virtual async Task>> FindMany( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -490,6 +492,7 @@ namespace xPushService.Controllers /// /// /// + [HttpGet("Query")] public virtual async Task>> Query( [FromQuery] XQuery query, [FromQuery] bool ignoreSoftDeleteds = true, diff --git a/Interfaces/IXBaseRepositoryProviderController.cs b/Interfaces/IXBaseRepositoryProviderController.cs index b525eaa..569ab91 100644 --- a/Interfaces/IXBaseRepositoryProviderController.cs +++ b/Interfaces/IXBaseRepositoryProviderController.cs @@ -136,6 +136,7 @@ namespace xPushService.Interfaces /// /// /// + [HttpGet("FindOne")] Task> FindOne( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -152,6 +153,7 @@ namespace xPushService.Interfaces /// /// /// + [HttpGet("FindMany")] Task>> FindMany( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -169,6 +171,7 @@ namespace xPushService.Interfaces /// /// /// + [HttpGet("Query")] Task>> Query( [FromQuery] XQuery query, [FromQuery] bool ignoreSoftDeleteds = true, diff --git a/Interfaces/IXBaseServiceProviderController.cs b/Interfaces/IXBaseServiceProviderController.cs index e4bb498..47d4436 100644 --- a/Interfaces/IXBaseServiceProviderController.cs +++ b/Interfaces/IXBaseServiceProviderController.cs @@ -137,6 +137,7 @@ namespace xPushService.Interfaces /// /// /// + [HttpGet("FindOne")] Task> FindOne( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -153,6 +154,7 @@ namespace xPushService.Interfaces /// /// /// + [HttpGet("FindMany")] Task>> FindMany( [FromRoute] string query, [FromQuery] bool ignoreSoftDeleteds = true, @@ -170,6 +172,7 @@ namespace xPushService.Interfaces /// /// /// + [HttpGet("Query")] Task>> Query( [FromQuery] XQuery query, [FromQuery] bool ignoreSoftDeleteds = true, diff --git a/nuget.config b/nuget.config index 632defe..c6fd40c 100644 --- a/nuget.config +++ b/nuget.config @@ -1,7 +1,8 @@ + - + \ No newline at end of file