Angular

时间:2017-06-07 10:03:28

标签: angular routing

Angular的location.replace()相当于什么 更改没有linkbutton的路径

1 个答案:

答案 0 :(得分:1)

你可以使用导航:)

IEnumerable<string> valuesIWant = FooCollection
    .Where(foo => foo.Number == 1)
    .SelectMany(foo => foo.Details)
    // now you have one sequence of all FooInFoo that are Details within
    // Foo objects with Number 1
    .Where(detail => expression that selects the FooInFoo you want)
    .Select(detail => detail.thisValueIWant);