【问题标题】:Creating a Repository创建存储库
【发布时间】:2012-04-12 14:39:41
【问题描述】:

我一直在使用 http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/implementing-the-repository-and-unit-of-work-patterns-in-an-asp-net-mvc-application 作为帮助我创建存储库的指导。我使用以下代码创建了一个类。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using TheatreGroup.Models;

namespace TheatreGroup.DAL
{
    public interface IShowRepository : IDisposable
    {
        IEnumerable<Show> GetShows();
        Show GetShowByID(int showId);
        void InsertShow(Show name);
        void DeleteShow(int showID);
        void UpdateShow(Show name);
        void Save();
    }
}

但是当我开始创建第二个类时,我收到一条错误消息:

TheatreGroup.DAL.ShowRepository' 没有实现接口成员'TheatreGroup.DAL.IShowRepository.InsertShow(TheatreGroup.Models.Show)'。

错误在第 5 行向下(绕行)

using System.Data;
using TheatreGroup.Models;

namespace TheatreGroup.DAL
{
    public class ShowRepository: IShowRepository, IDisposable
    {
        private TheatreContext context;

        public ShowRepository(TheatreContext context)
        {
            this.context = context;
        }

        public IEnumerable<Show> GetShows()
        {
            return context.Shows.ToList();
        }

        public Show GetShowByID(int id)
        {
            return context.Shows.Find(id);
        }

        public void InsertShows(Show name)
        {
            context.Shows.Add(name);
        }

        public void DeleteShow(int showID)
        {
            Show shows = context.Shows.Find(showID);
            context.Shows.Remove(shows);
        }

        public void UpdateShow(Show name)
        {
            context.Entry(name).State = EntityState.Modified;
        }

        public void Save()
        {
            context.SaveChanges();
        }

        private bool disposed = false;

        protected virtual void Dispose(bool disposing)
        {
            if (!this.disposed)
            {
                if (disposing)
                {
                    context.Dispose();
                }
            }
            this.disposed = true;
        }

        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }
    }
}

【问题讨论】:

    标签: c# visual-studio-2010 asp.net-mvc-3 linq repository


    【解决方案1】:

    你有InsertShows 而不是InsertShow。你的界面需要InsertShow

    【讨论】:

    • +1 这应该是结对编程的好处的海报问题,哈哈
    猜你喜欢
    • 1970-01-01
    • 2019-02-14
    • 1970-01-01
    • 2014-01-25
    • 1970-01-01
    • 2015-08-30
    • 2012-11-29
    • 2015-10-19
    • 2016-01-10
    相关资源
    最近更新 更多