5

我目前正在使用 LINQ 和 Entity Framework 5.0 编写一个基于 Web 的“配方”应用程序。我一直在努力处理这个查询,所以非常感谢任何帮助!

将有一个搜索功能,用户可以在其中输入他们希望配方结果匹配的成分列表。我需要找到所有食谱,其中相关的成分集合(名称属性)包含字符串列表(用户搜索词)中每条记录的文本。例如,考虑以下两个配方:

Tomato Sauce: Ingredients 'crushed tomatoes', 'basil', 'olive oil'
Tomato Soup:  Ingredients 'tomato paste', 'milk', 'herbs

如果用户使用搜索词“番茄”和“油”,它将返回番茄酱而不是番茄汤。

var allRecipes = context.Recipes
                .Include(recipeCategory => recipeCategory.Category)
                .Include(recipeUser => recipeUser.User);

IQueryable<Recipe> r = 
from recipe in allRecipes
let ingredientNames = 
    (from ingredient in recipe.Ingredients 
     select ingredient.IngredientName)
from i in ingredientNames
let ingredientsToSearch = i where ingredientList.Contains(i)
where ingredientsToSearch.Count() == ingredientList.Count()
select recipe;

我也试过:

var list = context.Ingredients.Include(ingredient => ingredient.Recipe)
       .Where(il=>ingredientList.All(x=>il.IngredientName.Contains(x)))
       .GroupBy(recipe=>recipe.Recipe).AsQueryable();

感谢您的帮助!

4

1 回答 1

6

就在我的脑海中,我会去做这样的事情

public IEnumerable<Recipe> SearchByIngredients(params string[] ingredients)
{
    var recipes = context.Recipes
                .Include(recipeCategory => recipeCategory.Category)
                .Include(recipeUser => recipeUser.User);
    foreach(var ingredient in ingredients)
    {
        recipes = recipes.Where(r=>r.Ingredients.Any(i=>i.IngredientName.Contains(ingredient)));
    }

    //Finialise the queriable
    return recipes.AsEnumerable();

}

然后,您可以使用以下方法调用它:

SearchByIngredients("tomatoes", "oil");

或者

var ingredients = new string[]{"tomatoes", "oil"};
SearchByIngredients(ingredients );

这将要做的是将 where 子句附加到每个搜索词的可查询食谱中。多个 where 子句在 SQL 中被视为 AND(无论如何,这正是您想要的)。Linq 在我们可以做到这一点的方式上非常好,然后在函数结束时,我们最终确定可查询对象,基本上说我们刚刚做的所有事情都可以变成一个单一的查询返回数据库。

我唯一的其他注意事项是您真的想要索引/全文索引成分名称列,否则这不会很好地扩展。

于 2013-02-23T04:26:51.303 回答