public SingleResult <BookRetrieveModel> GetBook([FromODataUri] Guid key) { IQueryable <BookRetrieveModel> result = _filterService.GetBookById(key); return(SingleResult.Create(result)); }