public async Task <QueryResult <IDictionary <string, object> > > QueryProductionLineDynamic( ProductionLineQueryProjection projection, ProductionLineQueryOptions options, ProductionLineQueryFilter filter = null, ProductionLineQuerySort sort = null, ProductionLineQueryPaging paging = null) { var query = ProductionLines; #region General if (filter != null) { query = query.Filter(filter); } query = query.Project(projection); int?totalCount = null; if (options.count_total) { totalCount = query.Count(); } #endregion if (!options.single_only) { #region List query if (sort != null) { query = query.Sort(sort); } if (paging != null && (!options.load_all || !ProductionLineQueryOptions.IsLoadAllAllowed)) { query = query.SelectPage(paging.page, paging.limit); } #endregion } if (options.single_only) { var single = query.SingleOrDefault(); if (single == null) { return(null); } var singleResult = GetProductionLineDynamic(single, projection, options); return(new QueryResult <IDictionary <string, object> >() { Single = singleResult }); } var entities = query.ToList(); var list = GetProductionLineDynamic(entities, projection, options); var result = new QueryResult <IDictionary <string, object> >(); result.List = list; if (options.count_total) { result.Count = totalCount; } return(result); }
public ValidationData ValidateGetProductionLines( ClaimsPrincipal principal, ProductionLineQueryFilter filter, ProductionLineQuerySort sort, ProductionLineQueryProjection projection, ProductionLineQueryPaging paging, ProductionLineQueryOptions options) { return(new ValidationData()); }
public async Task <IActionResult> Get([FromQuery][QueryObject] ProductionLineQueryFilter filter, [FromQuery] ProductionLineQuerySort sort, [FromQuery] ProductionLineQueryProjection projection, [FromQuery] ProductionLineQueryPaging paging, [FromQuery] ProductionLineQueryOptions options) { var validationData = _service.ValidateGetProductionLines( User, filter, sort, projection, paging, options); if (!validationData.IsValid) { return(BadRequest(AppResult.FailValidation(data: validationData))); } var result = await _service.QueryProductionLineDynamic( projection, options, filter, sort, paging); if (options.single_only && result == null) { return(NotFound(AppResult.NotFound())); } return(Ok(AppResult.Success(result))); }