如何返回 EntityCollection 类型的对象以与 ASP.NET MVC 中的 SelectList 一起使用?

发布于 2024-10-12 04:54:27 字数 1120 浏览 3 评论 0原文

我在 ASP.NET MVC HtmlHelper 中对 DropDownList 进行了扩展,以使其呈现 optgroup 的。当第二个集合是 IList 时,它工作得“很好”,但我很快发现,如果不是,或者在我的例子中,如果它是 EntityCollection,它就会崩溃,因为 < code>SelectList 无法枚举它。

因此,我在这里向任何知道如何绕过该问题的人寻求帮助。我想过传入第二个集合的 Type ,然后在内部执行强制转换,但这感觉不对......

无论如何,我希望有人可以帮助我,这是当前的代码:

internal IList<GroupListItem> GetListItems() {
    return (from object Item in Items
            select new GroupListItem {
                Children = new SelectList((Eval(Item, this.ChildrenField) as IEnumerable), this.ChildDataValueField, this.ChildDataTextField, this.ChildSelectedValue),
                Label = (Eval(Item, this.LabelField) as string)
            }).ToList();
}

private static object Eval(
    object Container,
    string Expression) {
    object Value = Container;

    if (!String.IsNullOrEmpty(Expression)) {
        Value = DataBinder.Eval(Container, Expression);
    };

    if (Value is IList) {
        return Value;
    };

    return Convert.ToString(Value, CultureInfo.CurrentCulture);
}

I have made an extension to DropDownList in the ASP.NET MVC HtmlHelper to make it render optgroup's. It works 'fine' when the second collection is an IList, but I quickly found out that if it's not, or in my case if it's an EntityCollection it crashes because the SelectList is unable to enumerate it.

So, I'm here asking for help from anyone who knows how I can bypass the issue. I thought about passing in a Type of what the second collection is and then performing casts internally, but that just doesn't feel right...

Anyway, I hope someone can help me, here's the current code:

internal IList<GroupListItem> GetListItems() {
    return (from object Item in Items
            select new GroupListItem {
                Children = new SelectList((Eval(Item, this.ChildrenField) as IEnumerable), this.ChildDataValueField, this.ChildDataTextField, this.ChildSelectedValue),
                Label = (Eval(Item, this.LabelField) as string)
            }).ToList();
}

private static object Eval(
    object Container,
    string Expression) {
    object Value = Container;

    if (!String.IsNullOrEmpty(Expression)) {
        Value = DataBinder.Eval(Container, Expression);
    };

    if (Value is IList) {
        return Value;
    };

    return Convert.ToString(Value, CultureInfo.CurrentCulture);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戴着白色围巾的女孩 2024-10-19 04:54:27

您是否考虑过使用 IEnumerable 而不是 IList?

Have you considered using IEnumerable instead of IList?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文