我有一个控制器,它将模型(ovw.ToList())传递给视图:
//
// GET: /Clinic/Overview/
public ActionResult Overview()
{
IEnumerable<Clinic> ovw = from c in db.Clinics
select c;
return View(ovw.ToList());
}
查看:
@model IEnumerable<ttp.Models.Clinic>
@foreach (var item in Model)
{
<div>@item.ClinicName</div>
@foreach (var item2 in item.Properties)
{
<div>@item2.Address</div>
这在屏幕上绝对正常。
但是,当使用MVCMailer时,如果我想在电子邮件中显示相同的布局,我如何将ovw.ToList()传递给邮件程序视图,以便我可以用这种方式引用相同的模型:
(我在视图的第一行放置了什么内容):
@model IEnumerable<ttp.Models.Clinic>
@foreach (var item in Model)
感谢您的帮助,
标记
答案 0 :(得分:2)
您应该在本指南的“将数据传递给邮件程序视图”部分找到答案:https://github.com/smsohan/MvcMailer/wiki/MvcMailer-Step-by-Step-Guide
要将模型与视图一起传递给MVCMailer,您需要使用ViewData:
var comment = new Comment {From = me, To = you, Message = "Great Work!"};
ViewData = new ViewDataDictionary(comment);
答案 1 :(得分:-1)
在我的项目中,我这样做,就在下面
我在索引视图中显示所有类别列表
在我的模型类中
public List<CategoryDetails> CategoryData { get; set; }
我也创建了CategoryDetails类并为我的所有字段创建了一个属性 像这样
public int CatID { get; set; }
[Required(ErrorMessage = "Enter Category Name")]
public string CatName { get; set; }
public string CatImage { get; set; }
并在我的主模型类中创建一个函数,如下所示
public void LoadCategory()
{
CategoryData = (from con in dbData.Categorys
select new CategoryDetails()
{
CatID = con.CatID,
CatName = con.CatName,
CatImage = con.CatImage,
}).ToList();
}
在我的控制器中,我创建了一个这样的动作
创建我的模型类对象并将我的模型函数传递给action
public ActionResult Index()
{
CategoryModel categorymodel = new CategoryModel();
categorymodel.LoadCategory();
return View(categorymodel);
}
在我看来
@model PMS.Models.CategoryModel
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>
Index</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>
Category Name
</th>
<th>
</th>
</tr>
@foreach (var item in Model.CategoryData)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.CatName)
</td>
</tr>
}
</table>
我认为这会对你有所帮助