Commit 44abf04f by Javier Piris

Añadido Lambda en el custom menú viewmodel

parent 9d66c136
......@@ -370,7 +370,7 @@ namespace inutralia.ViewModels
foreach (var ing in recipes[index].Ingredients)
{
// Lambda que elimina los ingredientes que se repiten al añadir recetas
//if (!ingredients.Any(o => o.Name.Contains(ing.Name)))
if (!ingredients.Any(o => o.Name.Contains(ing.Name)))
//ingredients.Add (ing.Name);
ingredients.Add(new Ingredient() { Name = ing.Name, Id = ing.Id });
} //endforeach
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment