次のチュートリアル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これらの2つのエラーが発生します。
タイプまたは名前空間の名前'IShowRepository'が見つかりませんでした(usingディレクティブまたはアセンブリ参照がありませんか?)
メタデータファイル'C:\ Users \ Ben \ Documents \ Visual Studio 2010 \ Projects \ StudentTheatreGroupWebsite \ StudentTheatreGroupWebsite \ bin\StudentTheatreGroupWebsite.dll'が見つかりませんでしたStudentTheatreGroupWebsite.Tests
どんな助けでも大歓迎です...
using System;
using System.Collections.Generic
using System.Data;
using System.Linq;
using StudentTheatreGroupWebsite.Models;
namespace StudentTheatreGroupWebsite.DAL
{
public class ShowRepository : IShowRepository , IDisposable
{
private StudentTheatreContext context;
public ShowRepository(StudentTheatreContext context)
{
this.context = context;
}
public IEnumerable<Show> GetShows()
{
return context.Shows.ToList();
}
public Show GetShowByID(int id)
{
return context.Shows.Find(id);
}
public void InsertShow(Show show)
{
context.Shows.Add(show);
}
public void DeleteShow(int ShowID)
{
Show show = context.Shows.Find(ShowID);
context.Shows.Remove(Shows);
}
public void UpdateShow(Show show)
{
context.Entry(show).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);
}
}
}