は、私はというエラーを取得しておきます。 Models.Product」MVCコントローラとリポジトリモデル
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HomebaseSystemNew.Models.Product>" %>
マイリポジトリ:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HomebaseSystemNew.Models;
namespace HomebaseSystemNew.Controllers
{
public class ProductRepository
{
public Product GetProductID(int Pid)
{
DatabaseLinkedDataContext db = new DatabaseLinkedDataContext();
return db.Products.FirstOrDefault(ans => ans.Pid == Pid);
}
}
マイコントローラー:
using System.Linq;
using System.Web.Mvc;
using HomebaseSystemNew.Models;
namespace HomebaseSystemNew.Controllers
{
public class ProductsController : Controller
{
public ActionResult EditProduct(int id)
{
ProductRepository repo = new ProductRepository();
repo.GetProductID(id);
return View(repo);
}
}
あなたは本当に多くを投稿する前に、いくつかの回答の受け付けを開始するべきである... – James