EF4.1 代码优先模拟与最小起订量

发布于 2024-11-08 01:52:10 字数 681 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见 2024-11-15 01:52:10

模拟数据访问时使用的一个很好的模式是 存储库模式和工作单元。当您对存储库接口进行抽象数据访问时,您可以使用模拟框架,例如 moq。为您提供可测试的存储库。

var mockUnitOfWork = new Mock<IUnitOfWork>();
mockUnitOfWork.SetupGet(p => p.UserRepository.GetSomeUsers)
.Returns(new List<User> { "Username", "email","etc"}));  

然后,您可以使用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.

var mockUnitOfWork = new Mock<IUnitOfWork>();
mockUnitOfWork.SetupGet(p => p.UserRepository.GetSomeUsers)
.Returns(new List<User> { "Username", "email","etc"}));  

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文