I already change it from the db to the API it's by the help of the following code and it's working fine thanks
var HccApp = HccAppHelper.InitHccApp();
var all_featuredProducts = HccApp.CatalogServices.Products.FindFeatured(1, 50000);
var listResult = all_featuredProducts.AsEnumerable().OrderByDescending(i => i.CreationDateUtc).Take(3).ToList();