1

私は Visual Studio 2012 を使用しています。ここに BikeController と Bike Model があります。プログラムを実行すると、「「System.Collections.IEnumerable」を実装していないため、コレクション初期化子で型「MvcApplication3.Models.Bike」​​を初期化できません」というエラーが表示されます。エラーは行にありますが、自転車モデルbikes = new Bike {に配置using System.Collections.IEnumerable;すると、「名前空間ディレクティブの使用は名前空間にのみ適用できます。「System.Collections.IEnumerable」は名前空間ではなく型です」と表示されました。前もって感謝します。

バイクコントローラー:

using MvcApplication3.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace MvcApplication3.Controllers
{
    public class BikeController : Controller
    {
        //
        // GET: /Bike/

        Bike bikes;

        public BikeController()
        {
            bikes = new Bike {
                new Bike(),
                new Bike { Manufacturer = "Nishiki", Gears = 5, Frame = "Road" }
            };
        }

        public ActionResult Index()
        {
            return View(this.bikes);
        }

        private ActionResult View(Func<object> func)
        {
            throw new NotImplementedException();
        }

        //
        // GET: /Bike/Details/5

        public ActionResult Details(Bike b)
        {
            return View(b);
        }

        //
        // GET: /Bike/Create

        public ActionResult Create()
        {
            return View();
        }

        //
        // POST: /Bike/Create

        [HttpPost]
        public ActionResult Create(FormCollection collection)
        {
            try
            {
                // TODO: Add insert logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        //
        // GET: /Bike/Edit/5

        public ActionResult Edit(int id)
        {
            return View();
        }

        //
        // POST: /Bike/Edit/5

        [HttpPost]
        public ActionResult Edit(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add update logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

        //
        // GET: /Bike/Delete/5

        public ActionResult Delete(int id)
        {
            return View();
        }

        //
        // POST: /Bike/Delete/5

        [HttpPost]
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                // TODO: Add delete logic here

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }
    }
}

バイクモデル:

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;

namespace MvcApplication3.Models
{
    public class Bike
    {

        public int BikeID { get; set; }
        public string Manufacturer { get; set; }
        public int Gears { get; set; }
        public string Frame { get; set; }

        static protected int bikeCount;

        public Bike()
        {
            this.Manufacturer = "Schwinn";
            this.Gears = 10;
            this.Frame = "Mountain";
            this.BikeID = bikeCount;
            bikeCount++;
        }
    }

}
4

3 に答える 3

0

次のようにコントローラーを初期化します。

    public class BikeController : Controller
    {
        //
        // GET: /Bike/

        List<Bike> bikes;

        public BikeController()
        {
           bikes = new List<Bike>() {
               new Bike(),
               new Bike { Manufacturer = "Nishiki", Gears = 5, Frame = "Road" }
           };
        }

        ...
   }
于 2013-09-23T05:38:26.433 に答える