私は少し英語を話します。私は自分の質問をしようとします。
私はモデルを持っています。その名前はProduct.csです
Product
{
public int TypeId { get; set; }/*these are at the same time field of Type Table*/
public string TypeName { get; set; }
public int TradeMarkId { get; set; }/*at the same time field of TradeMark Table*/
public string TradeMarkName { get; set; }
public int ProductId { get; set; }/*at the same time field of TProduct Table*/
public string ProductName { get; set; }
public int TId { get; set; }
public int TMId { get; set; }
public List<TypeProduct> typeList { get; set; }
}
マイコントローラーページ
My controller
[HttpGet]
public ActionResult TradeMarkProduckAdd()
{
Product product = new Product();
TypeList typeList = new TypeList();
product = typeList.TypeListOf(product);
return View(product);//"This doesn't work"
}
型エラー ディクショナリに渡されたモデル項目は型 'TypeMark.Models.Product' ですが、このディクショナリには型 'System.Collections.Generic.IEnumerable`1[TypeMark.Models.Product]' のモデル項目が必要です.
このエラーが発生したとき、戻り値 View(product);を変更しました。View((IEnumerable)product);を 返す しかし、それは再び機能しませんでした。
ページを見る
@using TypeTradeMark.Models
@model IEnumerable<Product>
@using (Html.BeginForm("AddProduct", "Home", FormMethod.Post))
{
@foreach(var item in Model as List<Product>)
{
@item.ProductName
@item.??//checkbox for every record
@item.??//dropdownlist for trademarks
}
}
TypeList クラス
TypeList class
public class TypeList
{
VtDataContext Vt = new VtDataContext();
public Product TypeListOf(Product typeListOf)
{
var query = (from c in Vt.Types select c);
typeListOf.typeList=new List<Type>(query.ToList());
return typeListof;
}
}
私のテーブル
Type : TypeId, TypeName
TradeMark : TradeMarkId,TradeMarkName
TProduct : ProductId,ProductName,TId,TMId//TId relation with TypeId, TMId relation with TradeMarkId
問題を解決できませんでした 助けてもらえますか? ありがとう