EF4.1 代码优先模拟与最小起订量
我正在尝试使用 EF4.1 Code Frist 来使用 EF。我已经开发了我的模型,例如:
public class User
{
[Key]
public int Id{get;set;}
[Column("first_name")]
[StringLength(30)]
public string FristName{get;set;}
//............
//..............
}
我还编写了一个接口:
public interface IUser
{
IDbSet<User> Users{get;}
}
我的上下文类如下所示:
public class UserContext : DbContext, IUser
{
public DbSet<User> Users{get;set;}
IDbSet<User> IUser.Users{get return{Users;}}
}
现在我不知道如何使用 Moq 来模拟此存储库并进行单元测试。也许我是使用模拟进行单元测试的新手。
请给我建议或向我指出一些资源,我可以在其中学习如何将 Moq 与 EF4.1 结合使用。
I am trying my hand on EF with EF4.1 Code Frist. I have developed my models, like:
public class User
{
[Key]
public int Id{get;set;}
[Column("first_name")]
[StringLength(30)]
public string FristName{get;set;}
//............
//..............
}
I have written an interface also:
public interface IUser
{
IDbSet<User> Users{get;}
}
My context class looks like this:
public class UserContext : DbContext, IUser
{
public DbSet<User> Users{get;set;}
IDbSet<User> IUser.Users{get return{Users;}}
}
Now I am at loss how to use Moq to mock this repository and do unit testing. Maybe I am new to unit testing with mocking.
Kindly advise me or point me to some resources where I can learn how to use Moq with EF4.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
模拟数据访问时使用的一个很好的模式是 存储库模式和工作单元。当您对存储库接口进行抽象数据访问时,您可以使用模拟框架,例如 moq。为您提供可测试的存储库。
然后,您可以使用mockUnitOfWork 和存储库来测试数据访问,而不必访问数据库,因为它只访问内存中的用户列表。
A great pattern to use when mocking data access is the Repository pattern and Unit of work. When you have abstracted data access to a Repository interface you can use a mocking framework like moq. To provide you with a testable repository.
You can then use the mockUnitOfWork and repository to test data access without having to hit the database as its only accessing an in memory list of users.