![]() |
VOOZH | about |
dotnet add package MockQueryable.NSubstitute --version 10.0.8
NuGet\Install-Package MockQueryable.NSubstitute -Version 10.0.8
<PackageReference Include="MockQueryable.NSubstitute" Version="10.0.8" />
<PackageVersion Include="MockQueryable.NSubstitute" Version="10.0.8" />Directory.Packages.props
<PackageReference Include="MockQueryable.NSubstitute" />Project file
paket add MockQueryable.NSubstitute --version 10.0.8
#r "nuget: MockQueryable.NSubstitute, 10.0.8"
#:package MockQueryable.NSubstitute@10.0.8
#addin nuget:?package=MockQueryable.NSubstitute&version=10.0.8Install as a Cake Addin
#tool nuget:?package=MockQueryable.NSubstitute&version=10.0.8Install as a Cake Tool
Extensions for mocking Entity Framework Core async queries like ToListAsync, FirstOrDefaultAsync, and more using popular mocking libraries such as Moq, NSubstitute, and FakeItEasy — all without hitting the database.
❤️ If you really like the tool, please 👉 Support the project or ☕ Buy me a coffee.
| Package | Latest Version | Install via Package Manager |
|---|---|---|
| 👁 Download |
👁 Version |
Install-Package MockQueryable.Core |
| 👁 Download |
👁 Version |
Install-Package MockQueryable.EntityFrameworkCore |
| 👁 Download |
👁 Version |
Install-Package MockQueryable.Moq |
| 👁 Download |
👁 Version |
Install-Package MockQueryable.NSubstitute |
| 👁 Download |
👁 Version |
Install-Package MockQueryable.FakeItEasy |
👁 codecov
👁 build
👁 release
👁 License
👁 Stars
👁 Contributors
👁 Last Commit
👁 Commit Activity
👁 Open Issues
Avoid hitting the real database in unit tests when querying via IQueryable:
var query = _userRepository.GetQueryable();
await query.AnyAsync(x => ...);
await query.FirstOrDefaultAsync(x => ...);
await query.ToListAsync();
// etc.
var users = new List<UserEntity>
{
new UserEntity { LastName = "Smith", DateOfBirth = new DateTime(2012, 1, 20) },
// More test data...
};
var mock = users.BuildMock(); // for IQueryable
_userRepository.Setup(x => x.GetQueryable()).Returns(mock);
_userRepository.GetQueryable().Returns(mock);
A.CallTo(() => userRepository.GetQueryable()).Returns(mock);
DbSet<T>var mockDbSet = users.BuildMockDbSet();
// Moq
var repo = new TestDbSetRepository(mockDbSet.Object);
// NSubstitute / FakeItEasy
var repo = new TestDbSetRepository(mockDbSet);
FindAsyncmock.Setup(x => x.FindAsync(userId)).ReturnsAsync((object[] ids) =>
{
var id = (Guid)ids[0];
return users.FirstOrDefault(x => x.Id == id);
});
Build a mock with the custom for testing EF.Functions.Like
var mockDbSet = users.BuildMockDbSet<UserEntity, SampleLikeExpressionVisitor>();
You can even create your own extensions. Check the example here.
See the sample project for working examples.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
Showing the top 3 popular GitHub repositories that depend on MockQueryable.NSubstitute:
| Repository | Stars |
|---|---|
|
nuyonu/N-Tier-Architecture
This is a n-layer architecture based on Common web application architectures.
|
|
|
alex289/CleanArchitecture
Sample .NET 10 API project including Clean Architecture principles, Onion Architecture, MediatR, and Entity Framework with unit and integration tests using xUnit
|
|
|
suxrobGM/logistics-app
AI-powered fleet management platform with an agentic dispatcher that autonomously matches loads to trucks, ensures HOS compliance, and optimizes routes. Built for trucking companies.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.8 | 49,147 | 5/16/2026 |
| 10.0.5 | 153,532 | 3/15/2026 |
| 10.0.2 | 130,230 | 1/29/2026 |
| 10.0.1 | 118,698 | 11/22/2025 |
| 10.0.0 | 2,646 | 11/22/2025 |
| 9.0.0 | 145,626 | 10/6/2025 |
| 8.0.1 | 93,544 | 10/6/2025 |
| 8.0.0 | 204,648 | 7/27/2025 |
| 7.0.4-beta | 53,883 | 9/24/2024 |
| 7.0.3 | 1,825,905 | 9/2/2024 |
| 7.0.2 | 68,274 | 8/20/2024 |
| 7.0.1 | 918,825 | 3/7/2024 |
| 7.0.0 | 1,053,795 | 11/21/2022 |
| 6.0.1 | 858,382 | 3/28/2022 |
| 6.0.0 | 137,370 | 3/24/2022 |
| 5.0.2 | 81,379 | 3/24/2022 |
| 5.0.1 | 487,020 | 5/25/2021 |
| 5.0.0 | 153,201 | 11/12/2020 |
| 5.0.0-preview.7 | 766 | 7/28/2020 |
| 3.1.3 | 168,893 | 5/19/2020 |
#128 Microsoft.EntityFrameworkCore and Microsoft.EntityFrameworkCore.Relational v 10.0.8 - supported
#123 NUnit from 4.5.1 to 4.6.0