使用库@using MultipleModelInOneView需要什么;在C#/ .net? 我一直在关注使用这个库的示例,但它们不起作用,因为Visual Studio中无法识别该库。
答案 0 :(得分:0)
我想出了一个解决方法。
制作一个"视图模型"基本上是一个包含所有我想要的类的类。
public class ViewModelForAllMembers
{
public IEnumerable<type1> type1s{ get; set; }
public IEnumerable<type2> type2s { get; set; }
public IEnumerable<type3> type3s{ get; set; }
}
然后,在我的观点的顶部:
@model WebApplication2.Models.ViewModelForAllMembers
@using WebApplication2.Models
WebApplication2.Models是我的VS项目中的模型命名空间,没有它我不能使用我的类。我的头撞在墙上