我有一個BookingView類型號:MVC3顯示錶中的所有記錄上查看
public class BookingView
{
[Required]
[Display(Name = "Attraction")]
public int Attraction { get; set; }
[Required]
[Display(Name = "Date")]
public string Date { get; set; }
[Required]
[Display(Name = "Username")]
public string Username { get; set; }
}
反對這種模式在數據庫表是Tickets
。
我需要在名爲BookingManager
的模型中的另一個類中編寫函數以獲取所有票證記錄。
public IEnumerable<BookingView> GetAllBookings()
{
var a = from o in dre.Tickets select o;
return a.ToList();
}
我想顯示查看這些記錄命名ViewAllBookings
:
@model IEnumerable<VirtualTickets.Models.ViewModel.BookingView>
@{
ViewBag.Title = "ViewAllBookings";
}
<h2>ViewAllBookings</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
<th>
Attraction
</th>
<th>
Date
</th>
<th>
Username
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Attraction)
</td>
<td>
@Html.DisplayFor(modelItem => item.Date)
</td>
<td>
@Html.DisplayFor(modelItem => item.Username)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
</td>
</tr>
}
</table>
功能給出了功能GetAllBookings
complie時間誤差在return語句。如果我將返回類型更改爲Ticket
,那麼我得到運行時錯誤,因爲在查看ViewAllBookings
期望IEnumerable類型爲BookingView
的記錄列表。
請爲此提供解決方案。我真的很困惑如何處理這個問題。
感謝
謝謝。有效! – Azeem