24 lines
		
	
	
		
			769 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			769 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Microsoft.AspNet.OData;
 | |
| using Microsoft.AspNetCore.Mvc;
 | |
| using PoweredSoft.CQRS.Abstractions;
 | |
| using PoweredSoft.CQRS.AspNetCore.Mvc;
 | |
| using System;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace PoweredSoft.CQRS.AspNetCore.OData
 | |
| {
 | |
|     [Route("api/odata/[controller]")]
 | |
|     [ApiExplorerSettings(IgnoreApi = true)]
 | |
|     public class QueryODataController<TQuery, TQueryResult> : ODataController
 | |
|         where TQuery : class
 | |
|     {
 | |
|         [EnableQuery, HttpGet, QueryControllerAuthorization]
 | |
|         public async Task<TQueryResult> Get([FromServices]IQueryHandler<TQuery, TQueryResult> queryHandler, [FromQuery]TQuery query)
 | |
|         {
 | |
|             var result = await queryHandler.HandleAsync(query, HttpContext.RequestAborted);
 | |
|             return result;
 | |
|         }
 | |
|     }
 | |
| 
 | |
| }
 |