gpt4 book ai didi

asp.net-mvc-3 - 无法将 [] 索引应用于 ICollection 类型的表达式

转载 作者:行者123 更新时间:2023-12-02 08:36:33 25 4
gpt4 key购买 nike

有人可以提供代码来修复此错误吗?

“无法将 [] 索引应用于“ICollection”类型的表达式

本质上,我正在尝试保存/绑定(bind)对象集合中的值。

@model MVC3.Models.Parent

@Html.EditorFor(model => model.Bs[0].Val)

public class A
{
public int Name { get; set; }
public virtual ICollection<B> Bs { get; set; }
}

public class B
{
public int Val { get; set; }
public virtual A A { get; set; }
}

最佳答案

ICollection s 没有排序,因此无法索引。

相反,您应该使用单独的 ViewModel 类 IList<T>属性。

关于asp.net-mvc-3 - 无法将 [] 索引应用于 ICollection 类型的表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7870093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com