Foreach无法在“方法组”上运行。你打算调用'方法组'吗?

时间:2015-02-24 10:22:49

标签: c# asp.net-mvc umbraco

我对C#很陌生,我收到一个我无法理解的错误?

我有一个视图,我想循环一系列节点,所以我正在尝试这样做:

@foreach (var crumb in Model.Breadcrumb)
{
  //My code
}

在我的viewmodel中,我有这个:

public IEnumerable<LinkModel> Breadcrumb(IPublishedContent content) {
    //Do logic. 
     return GetFrontpage(content, true).Reverse().Select(item => new LinkModel {
        Target = "",
        Text = item.Name,
        Url = item.Url
    }); 
}

private static IEnumerable<IPublishedContent> GetFrontpage(IPublishedContent content, bool includeFrontpage = false)
{
    var path = new List<IPublishedContent>();

    while (content.DocumentTypeAlias != "frontpage")
    {
        if (content == null)
        {
            throw new Exception("No frontpage found");
        }
        path.Add(content);
        content = content.Parent;
    }
    if (includeFrontpage)
    {
        path.Add(content);
    }
    return path;
}

2 个答案:

答案 0 :(得分:6)

如果不添加括号,编译器会将方法视为method group。如果要调用该方法并迭代结果,请使用:

@foreach (var crumb in Model.Breadcrumb(/* your parameters */))

答案 1 :(得分:3)

Model.Breadcurmb是一种方法,而不是属性或字段,因此请按以下方式调用

     @foreach (var crumb in Model.Breadcrumb(content))