Skip to content

Instantly share code, notes, and snippets.

@wayne-o
Created October 30, 2012 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wayne-o/3982488 to your computer and use it in GitHub Desktop.
Save wayne-o/3982488 to your computer and use it in GitHub Desktop.
public class Repository<T> : IRepository<T>
{
private readonly MongoCollection<T> docs;
public Repository(MongoCollection<T> docs)
{
this.docs = docs;
}
public IList<T> GetAll()
{
return docs.FindAll().Select(x=>x.As<T>()).ToList();
}
public void Save(T doc)
{
docs.Save(doc);
}
public void Dispose()
{
throw new NotImplementedException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment