0
0

Order found products by IsOnWarehouse property

This commit is contained in:
Sergey Chebotar 2023-05-12 07:46:06 +03:00
parent b7e4bf6887
commit bdf5f4f727

View File

@ -21,6 +21,7 @@ namespace RhSolutions.Api.Controllers
.Where(p => EF.Functions.ToTsVector(
"russian", string.Join(' ', new[] { p.Name, string.Join(' ', p.ProductLines)}))
.Matches(EF.Functions.WebSearchToTsQuery("russian", query)))
.OrderByDescending(p => p.IsOnWarehouse)
.AsAsyncEnumerable();
}
}