の定義が含まれていません...ここに私のすべてのコードViewModelには、私は1つのビューで2つの<code>UserManager</code><code>Feedback</code>モデルをバインドしようとしていますが、私はビューが電子メールのいずれかの定義が含まれていないという見解で問題に直面していますメール
がありますpublic class FeedbackMixModel
{
public List<UserManager> allUserManagers { get; set; }
public List<Feedback> allfeedbacks { get; set; }
}
コントローラ== >>>
var user = db.UserManagers.ToList();
var feedbacks = db.Feedbacks.ToList();
var Model = new FeedbackMixModel
{
allUserManagers =user,
allfeedbacks=feedbacks
};
return View(Model);
図== >>
@model WebApplication5.Models.FeedbackMixModel
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!-- Main content -->
<table class="pretty" id="dt">
<thead>
<tr>
<th >
@Html.DisplayNameFor(model => model.Email)
</th>
<th>
@Html.DisplayNameFor(model => model.CurrentStorage)
</th>
<th>
@Html.DisplayNameFor(model => model.MaxStorage)
</th>
<th>
@Html.DisplayNameFor(model => model.LastLoginMonth)
</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model.allUserManagers)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Email)
</td>
<td>
@Html.DisplayFor(modelItem => item.CurrentStorage)
</td>
<td>
@Html.DisplayFor(modelItem => item.MaxStorage)
</td>
<td>
@Html.DisplayFor(modelItem => item.LastLoginMonth)
</td>
</tr>
}
</tbody>
</table>
私はこの問題を解決するかどうかは完全に混乱しています...メールは私が間違って
あなた 'FeedbackMixModel'を'Email'プロパティはありません。 'CurrentStorage'、' MaxStorage'、 'LastLoginMonth'もありません。これらのプロパティはどこにありますか? –
これらのプロパティは、userManagerクラス – sajiii