Moq.EntityFrameworkCore
7.0.0.2
dotnet add package Moq.EntityFrameworkCore --version 7.0.0.2
NuGet\Install-Package Moq.EntityFrameworkCore -Version 7.0.0.2
<PackageReference Include="Moq.EntityFrameworkCore" Version="7.0.0.2" />
paket add Moq.EntityFrameworkCore --version 7.0.0.2
#r "nuget: Moq.EntityFrameworkCore, 7.0.0.2"
// Install Moq.EntityFrameworkCore as a Cake Addin
#addin nuget:?package=Moq.EntityFrameworkCore&version=7.0.0.2
// Install Moq.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=Moq.EntityFrameworkCore&version=7.0.0.2
Moq.EntityFrameworkCore
This library helps you mocking EntityFramework contexts. Now you will be able to test methods that are using DbSet<TEntity>
or DbQuery<TEntity>
from DbContext
in an effective way.
Installation - NuGet Packages
Install-Package Moq.EntityFrameworkCore
Usage
For example we can assume that we have the following production code:
public class UsersContext : DbContext
{
public virtual DbSet<User> Users { get; set; }
}
To mock Users and Roles you only need to implement the following 3 steps:
1. Create DbContext
mock:
var userContextMock = new Mock<UsersContext>();
2. Generate your entities:
IList<User> users = ...;
3. Setup DbSet
or DbQuery
property:
userContextMock.Setup(x => x.Users).ReturnsDbSet(users);
or
userContextMock.SetupGet(x => x.Users).ReturnsDbSet(users);
or
userContextMock.SetupSequence(x => x.Set<User>())
.ReturnsDbSet(new List<User>())
.ReturnsDbSet(users);
And this is all. You can use your DbContext
in your tests.
The second option is mocking DbSet
that is part of the interface:
public interface IBlogContext
{
DbSet<Post> Posts { get; }
}
And then use:
var posts = new List<Post>();
var contextMock = new Mock<IBlogContext>();
contextMock.Setup(p => p.Posts).ReturnsDbSet(posts);
You will find examples of this library in the repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. |
-
net6.0
- Microsoft.EntityFrameworkCore (>= 7.0.0)
- Moq (>= 4.18.1)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Moq.EntityFrameworkCore:
Package | Downloads |
---|---|
Atacorp.ApiEssentials.Testing.XUnit
Package Description |
|
Devocean.Tests
Devocean.Tests is a set of base classes and helpers inteded to support implementing integration and unit tests on projects based on Devocean.Core |
|
Atacorp.TestingEssentials.XUnit
Package Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Moq.EntityFrameworkCore:
Repository | Stars |
---|---|
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
|
Version | Downloads | Last updated |
---|---|---|
7.0.0.2 | 633,849 | 12/1/2022 |
6.0.1.4 | 963,392 | 5/29/2022 |
6.0.1.3 | 44,955 | 5/29/2022 |
6.0.1.2 | 370,565 | 1/25/2022 |
6.0.0.6 | 7,081 | 1/25/2022 |
5.0.0.2 | 470,419 | 3/12/2021 |
5.0.0.1 | 96,728 | 11/29/2020 |
3.1.2.13 | 242,185 | 11/29/2020 |
3.1.2.6 | 158,019 | 6/29/2020 |
3.1.2.1 | 74,914 | 2/26/2020 |
3.0.0.10 | 38,558 | 11/9/2019 |
3.0.0.4 | 7,985 | 10/6/2019 |
2.2.1.1 | 111,865 | 6/30/2020 |
2.2.1 | 155,568 | 2/1/2019 |
2.0.1 | 189,746 | 2/23/2018 |
1.0.0 | 6,809 | 10/13/2017 |
Version 7.0.0.1
Added support for EntityFrameworkCore 7.0