我是这个伟大的微观工具(petapoco)的新手,我想知道如何在web项目中使用petapoco实现UoW和存储库模式。我已经阅读了一些文章,但没有很好的想法如何设计/实现。有人可以提供一些生产示例或指导我实现这个目标吗?
这是我的思考和实用的实施代码,如果我错了,请提出建议或评论。
public interface IUnitOfWork
{
void StartNew();
void Commit();
void Rollback();
}
public class PetaPocoUnitOfWork : IUnitOfWork
{
private PetaPoco.Database _db = null;
public PetaPocoUnitOfWork(PetaPoco.Database db)
{
_db = db;
}
public void StartNew()
{
_db.BeginTransaction();
}
public void Commit()
{
_db.CompleteTransaction();
}
public void Rollback()
{
_db.AbortTransaction();
}
}
public class UnitOfWorkFactory
{
public static IUnitOfWork GetInstance()
{
return new PetaPocoUnitOfWork(Project.Core.Domain.ProjectDb.GetInstance());
}
}
interface IRepository<T>
{
void Insert(T entity);
void Update(T entity);
void Delete(T entity);
List<T> FetchAll();
List<T> FetchAll(int startIndex, int endIndex, int count);
T Fetch(int uid);
void SaveChanges();
}
public class TireRepository : IRepository<Tire>
{
private IUnitOfWork _uow = null;
public TireRepository(IUnitOfWork uow)
{
_uow = uow;
}
public void Insert(Tire entity)
{
var db = ProjectDb.GetInstance();
db.Save(entity);
}
public void Update(Tire entity)
{
throw new NotImplementedException();
}
public void Delete(Tire entity)
{
var db = ProjectDb.GetInstance();
}
public List<Tire> FetchAll()
{
throw new NotImplementedException();
}
public List<Tire> FetchAll(int startIndex, int endIndex, int count)
{
throw new NotImplementedException();
}
public Tire Fetch(int id)
{
throw new NotImplementedException();
}
public void SaveChanges()
{
_uow.Commit();
}
}
这是一个简单的测试用例,它可能是服务层调用的用法。
[TestMethod()]
public void InsertTest()
{
IUnitOfWork uow = Xyz.Core.UnitOfWorkFactory.GetInstance();
TireRepository target = new TireRepository(uow);
Tire entity = new Tire();
entity.Description = "ABCD";
entity.Manufacturer = 1;
entity.Spec = "18R/V";
try
{
target.Insert(entity);
target.SaveChanges();
}
catch
{
uow.Rollback();
}
}
我打算使用autoFac作为我的Ioc解决方案,并将每个http请求的uow实例注入到存储库对象。
如果此代码有错或错误,请给我一些评论或建议。非常感谢。
答案 0 :(得分:1)
代码是对的。只是有点过度架构的恕我直言。一件事:为了更清晰,我会将SaveChanges
的名称更改为CommitChanges
。