这是视图:
@model tgpwebged.Models.sistema_DocType
...
此模型是与 textBoxFor 和其他 html 助手一起使用的实体
这是控制器。
public ActionResult AdminSettingAddTipo()
{
IEnumerable<string> indices;
using (tgpwebgedEntities context = new tgpwebgedEntities())
{
var obj = from u in context.sistema_Indexes select u.idName;
indices = obj.ToList();
}
return PartialView(indices);
}
我在这里有我需要的一切,我正在使用一个模型来创建视图,所以我不允许将“索引”作为模型发送,因为一个视图中不允许有 2 个模型。
我现在不想使用“Tupe”作为父视图。我只想知道如何将我的 IEnumerable 发送到视图的最佳方式。
我正在考虑将 ViewBag 作为最后一个选项,但我正在避免使用 ViewBag。
谢谢