Verify.EntityFramework/readme.md

507 строки
14 KiB
Markdown
Исходник Обычный вид История

2020-01-06 11:53:20 +03:00
# <img src="/src/icon.png" height="30px"> Verify.EntityFramework
2020-01-06 07:58:10 +03:00
2020-05-06 09:57:51 +03:00
[![Build status](https://ci.appveyor.com/api/projects/status/g6njwv0aox62atu0?svg=true)](https://ci.appveyor.com/project/SimonCropp/verify-entityframework)
2020-01-06 11:53:20 +03:00
[![NuGet Status](https://img.shields.io/nuget/v/Verify.EntityFramework.svg)](https://www.nuget.org/packages/Verify.EntityFramework/)
2020-02-19 02:19:19 +03:00
[![NuGet Status](https://img.shields.io/nuget/v/Verify.EntityFrameworkClassic.svg)](https://www.nuget.org/packages/Verify.EntityFrameworkClassic/)
2020-01-06 07:58:10 +03:00
2020-12-23 01:24:00 +03:00
Extends [Verify](https://github.com/VerifyTests/Verify) to allow snapshot testing with EntityFramework.
2020-01-06 07:58:10 +03:00
2020-07-26 04:53:24 +03:00
<a href='https://dotnetfoundation.org' alt='Part of the .NET Foundation'><img src='https://raw.githubusercontent.com/VerifyTests/Verify/master/docs/dotNetFoundation.svg' height='30px'></a><br>
Part of the <a href='https://dotnetfoundation.org' alt=''>.NET Foundation</a>
2020-01-06 07:58:10 +03:00
## NuGet package
2020-02-19 02:19:19 +03:00
* https://nuget.org/packages/Verify.EntityFramework/
* https://nuget.org/packages/Verify.EntityFrameworkClassic/
2020-01-06 07:58:10 +03:00
2020-10-26 01:16:27 +03:00
## Enable
2020-01-06 07:58:10 +03:00
2021-06-13 12:36:29 +03:00
Enable VerifyEntityFramework once at assembly load time:
2020-01-06 07:58:10 +03:00
2020-04-16 01:34:23 +03:00
### EF Core
<!-- snippet: EnableCore -->
<a id='snippet-enablecore'></a>
2020-01-06 07:58:10 +03:00
```cs
2020-01-06 11:53:20 +03:00
VerifyEntityFramework.Enable();
2020-01-06 07:58:10 +03:00
```
2021-03-30 06:08:18 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L344-L348' title='Snippet source file'>snippet source</a> | <a href='#snippet-enablecore' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-04-16 01:34:23 +03:00
### EF Classic
<!-- snippet: EnableClassic -->
<a id='snippet-enableclassic'></a>
2020-02-18 09:12:51 +03:00
```cs
2020-02-19 01:44:24 +03:00
VerifyEntityFrameworkClassic.Enable();
2020-02-18 09:12:51 +03:00
```
2020-11-08 11:53:02 +03:00
<sup><a href='/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.cs#L137-L141' title='Snippet source file'>snippet source</a> | <a href='#snippet-enableclassic' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-08-19 10:02:41 +03:00
2020-10-26 01:16:27 +03:00
## Recording
2020-08-19 10:02:41 +03:00
2020-08-20 00:16:22 +03:00
Recording allows all commands executed by EF to be captured and then (optionally) verified.
2020-08-19 10:11:16 +03:00
2020-08-19 10:02:41 +03:00
2020-10-26 01:16:27 +03:00
### Enable
2020-08-19 10:02:41 +03:00
2020-09-12 15:21:00 +03:00
Call `SqlRecording.EnableRecording()` on `DbContextOptionsBuilder`.
2020-08-19 10:02:41 +03:00
2020-08-20 00:31:56 +03:00
<!-- snippet: EnableRecording -->
<a id='snippet-enablerecording'></a>
2020-08-20 00:31:56 +03:00
```cs
2020-12-04 09:25:13 +03:00
DbContextOptionsBuilder<SampleDbContext> builder = new();
2020-08-20 00:31:56 +03:00
builder.UseSqlServer(connection);
builder.EnableRecording();
2020-12-04 09:25:13 +03:00
SampleDbContext data = new(builder.Options);
2020-08-20 00:31:56 +03:00
```
2021-03-30 06:08:18 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L202-L209' title='Snippet source file'>snippet source</a> | <a href='#snippet-enablerecording' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-08-19 10:02:41 +03:00
2020-09-12 15:21:00 +03:00
`EnableRecording` should only be called in the test context.
2020-08-20 14:01:33 +03:00
2020-08-19 10:02:41 +03:00
2020-10-26 01:16:27 +03:00
### Usage
2020-08-19 10:11:16 +03:00
2020-12-04 09:25:13 +03:00
To start recording call `SqlRecording.StartRecording()`. The results will be automatically included in verified file.
2020-08-19 10:11:16 +03:00
2020-08-19 10:02:41 +03:00
<!-- snippet: Recording -->
<a id='snippet-recording'></a>
2020-08-19 10:02:41 +03:00
```cs
2020-12-04 09:25:13 +03:00
Company company = new()
2020-08-19 10:02:41 +03:00
{
2020-10-26 00:55:58 +03:00
Content = "Title"
};
data.Add(company);
await data.SaveChangesAsync();
2020-08-19 10:02:41 +03:00
2020-10-26 00:55:58 +03:00
SqlRecording.StartRecording();
2020-08-19 10:02:41 +03:00
2020-10-26 00:55:58 +03:00
await data.Companies
.Where(x => x.Content == "Title")
.ToListAsync();
2020-08-19 10:02:41 +03:00
2020-10-26 00:55:58 +03:00
await Verifier.Verify(data.Companies.Count());
2020-08-19 10:02:41 +03:00
```
2021-03-30 06:08:18 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L282-L299' title='Snippet source file'>snippet source</a> | <a href='#snippet-recording' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-08-19 10:02:41 +03:00
Will result in the following verified file:
<!-- snippet: CoreTests.Recording.verified.txt -->
<a id='snippet-CoreTests.Recording.verified.txt'></a>
2020-08-19 10:02:41 +03:00
```txt
2020-09-10 08:43:13 +03:00
{
2020-11-08 11:53:02 +03:00
target: 5,
2020-09-10 08:43:13 +03:00
sql: [
{
2020-11-08 11:53:02 +03:00
Type: ReaderExecutedAsync,
2021-05-22 04:16:37 +03:00
Text:
2020-11-08 11:53:02 +03:00
SELECT [c].[Id], [c].[Content]
2020-08-19 10:02:41 +03:00
FROM [Companies] AS [c]
2020-11-08 11:53:02 +03:00
WHERE [c].[Content] = N'Title'
2020-09-10 08:43:13 +03:00
},
{
2020-11-08 11:53:02 +03:00
Type: ReaderExecuted,
2021-05-22 04:16:37 +03:00
Text:
2020-11-08 11:53:02 +03:00
SELECT COUNT(*)
FROM [Companies] AS [c]
2020-09-10 08:43:13 +03:00
}
]
}
2020-08-19 10:02:41 +03:00
```
2020-11-08 11:53:02 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.Recording.verified.txt#L1-L18' title='Snippet source file'>snippet source</a> | <a href='#snippet-CoreTests.Recording.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 07:58:10 +03:00
2020-12-04 09:46:11 +03:00
Sql entries can be explicitly read using `SqlRecording.FinishRecording`, optionally filtered, and passed to Verify:
<!-- snippet: RecordingSpecific -->
<a id='snippet-recordingspecific'></a>
```cs
Company company = new()
{
Content = "Title"
};
data.Add(company);
await data.SaveChangesAsync();
SqlRecording.StartRecording();
await data.Companies
.Where(x => x.Content == "Title")
.ToListAsync();
var entries = SqlRecording.FinishRecording();
//TODO: optionally filter the results
await Verifier.Verify(new
{
target = data.Companies.Count(),
sql = entries
});
```
2021-03-30 06:08:18 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L308-L331' title='Snippet source file'>snippet source</a> | <a href='#snippet-recordingspecific' title='Start of snippet'>anchor</a></sup>
2020-12-04 09:46:11 +03:00
<!-- endSnippet -->
2020-10-26 01:16:27 +03:00
### DbContext spanning
2020-08-20 14:01:33 +03:00
2020-09-12 15:21:00 +03:00
`StartRecording` can be called on different DbContext instances (built from the same options) and the results will be aggregated.
2020-08-20 14:01:33 +03:00
<!-- snippet: MultiDbContexts -->
<a id='snippet-multidbcontexts'></a>
2020-08-20 14:01:33 +03:00
```cs
2020-12-04 09:25:13 +03:00
DbContextOptionsBuilder<SampleDbContext> builder = new();
2020-08-20 14:01:33 +03:00
builder.UseSqlServer(connectionString);
builder.EnableRecording();
2020-12-04 09:25:13 +03:00
await using SampleDbContext data1 = new(builder.Options);
2020-09-10 08:43:13 +03:00
SqlRecording.StartRecording();
2020-12-04 09:25:13 +03:00
Company company = new()
2020-08-20 14:01:33 +03:00
{
Content = "Title"
};
data1.Add(company);
await data1.SaveChangesAsync();
2020-12-04 09:25:13 +03:00
await using SampleDbContext data2 = new(builder.Options);
2020-08-20 14:01:33 +03:00
await data2.Companies
.Where(x => x.Content == "Title")
.ToListAsync();
2020-09-10 08:43:13 +03:00
await Verifier.Verify(data2.Companies.Count());
2020-08-20 14:01:33 +03:00
```
2021-03-30 06:08:18 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L251-L273' title='Snippet source file'>snippet source</a> | <a href='#snippet-multidbcontexts' title='Start of snippet'>anchor</a></sup>
2020-08-20 14:01:33 +03:00
<!-- endSnippet -->
<!-- snippet: CoreTests.MultiDbContexts.verified.txt -->
<a id='snippet-CoreTests.MultiDbContexts.verified.txt'></a>
2020-08-20 14:01:33 +03:00
```txt
2020-09-10 08:43:13 +03:00
{
2020-11-08 11:53:02 +03:00
target: 5,
2020-09-10 08:43:13 +03:00
sql: [
{
2020-11-08 11:53:02 +03:00
Type: ReaderExecutedAsync,
2020-09-10 08:43:13 +03:00
HasTransaction: true,
Parameters: {
2020-12-18 13:23:52 +03:00
@p0 (Int32): 0,
@p1 (String?): Title
2020-09-10 08:43:13 +03:00
},
2021-05-22 04:16:37 +03:00
Text:
2020-11-08 11:53:02 +03:00
SET NOCOUNT ON;
2020-08-20 14:01:33 +03:00
INSERT INTO [Companies] ([Id], [Content])
2020-11-08 11:53:02 +03:00
VALUES (@p0, @p1);
2020-09-10 08:43:13 +03:00
},
{
2020-11-08 11:53:02 +03:00
Type: ReaderExecutedAsync,
2021-05-22 04:16:37 +03:00
Text:
2020-11-08 11:53:02 +03:00
SELECT [c].[Id], [c].[Content]
2020-08-20 14:01:33 +03:00
FROM [Companies] AS [c]
2020-11-08 11:53:02 +03:00
WHERE [c].[Content] = N'Title'
2020-09-10 08:43:13 +03:00
},
{
2020-11-08 11:53:02 +03:00
Type: ReaderExecuted,
2021-05-22 04:16:37 +03:00
Text:
2020-11-08 11:53:02 +03:00
SELECT COUNT(*)
FROM [Companies] AS [c]
2020-09-10 08:43:13 +03:00
}
]
}
2020-08-20 14:01:33 +03:00
```
2020-11-08 11:53:02 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.MultiDbContexts.verified.txt#L1-L30' title='Snippet source file'>snippet source</a> | <a href='#snippet-CoreTests.MultiDbContexts.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-08-20 14:01:33 +03:00
<!-- endSnippet -->
2020-10-26 01:16:27 +03:00
## ChangeTracking
2020-01-07 05:08:39 +03:00
2020-08-19 06:33:30 +03:00
Added, deleted, and Modified entities can be verified by performing changes on a DbContext and then verifying the instance of ChangeTracking. This approach leverages the [EntityFramework ChangeTracker](https://docs.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.changetracking.changetracker).
2020-01-07 05:08:39 +03:00
2020-10-26 01:16:27 +03:00
### Added entity
2020-01-06 07:58:10 +03:00
2020-01-06 13:38:28 +03:00
This test:
<!-- snippet: Added -->
<a id='snippet-added'></a>
2020-01-06 13:38:28 +03:00
```cs
2020-06-07 10:06:09 +03:00
[Test]
2020-01-06 13:38:28 +03:00
public async Task Added()
{
var options = DbContextOptions();
2020-12-04 09:25:13 +03:00
await using SampleDbContext data = new(options);
Company company = new()
2020-07-07 06:40:02 +03:00
{
Content = "before"
};
data.Add(company);
await Verifier.Verify(data.ChangeTracker);
2020-01-06 13:38:28 +03:00
}
```
2020-10-26 00:55:58 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L14-L30' title='Snippet source file'>snippet source</a> | <a href='#snippet-added' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 13:38:28 +03:00
Will result in the following verified file:
2020-01-06 07:58:10 +03:00
2020-04-16 01:34:23 +03:00
<!-- snippet: CoreTests.Added.verified.txt -->
<a id='snippet-CoreTests.Added.verified.txt'></a>
2020-01-06 13:38:28 +03:00
```txt
{
Added: {
Company: {
2020-01-06 13:39:54 +03:00
Id: 0,
2020-11-08 11:53:02 +03:00
Content: before
2020-01-06 13:38:28 +03:00
}
}
}
```
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.Added.verified.txt#L1-L8' title='Snippet source file'>snippet source</a> | <a href='#snippet-CoreTests.Added.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 13:38:28 +03:00
2020-10-26 01:16:27 +03:00
### Deleted entity
2020-01-06 07:58:10 +03:00
This test:
2020-01-06 13:38:28 +03:00
<!-- snippet: Deleted -->
<a id='snippet-deleted'></a>
2020-01-06 13:38:28 +03:00
```cs
2020-06-07 10:06:09 +03:00
[Test]
2020-01-06 13:38:28 +03:00
public async Task Deleted()
{
var options = DbContextOptions();
2020-12-04 09:25:13 +03:00
await using SampleDbContext data = new(options);
2020-04-03 03:32:46 +03:00
data.Add(new Company {Content = "before"});
await data.SaveChangesAsync();
2020-01-06 13:38:28 +03:00
2020-04-03 03:32:46 +03:00
var company = data.Companies.Single();
data.Companies.Remove(company);
await Verifier.Verify(data.ChangeTracker);
2020-01-06 13:38:28 +03:00
}
```
2020-10-26 00:55:58 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L32-L48' title='Snippet source file'>snippet source</a> | <a href='#snippet-deleted' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 07:58:10 +03:00
Will result in the following verified file:
2020-04-16 01:34:23 +03:00
<!-- snippet: CoreTests.Deleted.verified.txt -->
<a id='snippet-CoreTests.Deleted.verified.txt'></a>
2020-01-06 13:38:28 +03:00
```txt
{
Deleted: {
Company: {
Id: 0
}
}
}
```
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.Deleted.verified.txt#L1-L7' title='Snippet source file'>snippet source</a> | <a href='#snippet-CoreTests.Deleted.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 13:38:28 +03:00
2020-10-26 01:16:27 +03:00
### Modified entity
2020-01-06 13:38:28 +03:00
This test:
<!-- snippet: Modified -->
<a id='snippet-modified'></a>
2020-01-06 13:38:28 +03:00
```cs
2020-06-07 10:06:09 +03:00
[Test]
2020-01-06 13:38:28 +03:00
public async Task Modified()
{
var options = DbContextOptions();
2020-12-04 09:25:13 +03:00
await using SampleDbContext data = new(options);
Company company = new()
2020-07-07 06:40:02 +03:00
{
Content = "before"
};
2020-04-03 03:32:46 +03:00
data.Add(company);
await data.SaveChangesAsync();
2020-01-06 13:38:28 +03:00
2020-04-03 03:32:46 +03:00
data.Companies.Single().Content = "after";
await Verifier.Verify(data.ChangeTracker);
2020-01-06 13:38:28 +03:00
}
```
2020-10-26 00:55:58 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L50-L69' title='Snippet source file'>snippet source</a> | <a href='#snippet-modified' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 07:58:10 +03:00
2020-01-06 13:38:28 +03:00
Will result in the following verified file:
2020-04-16 01:34:23 +03:00
<!-- snippet: CoreTests.Modified.verified.txt -->
<a id='snippet-CoreTests.Modified.verified.txt'></a>
2020-02-18 09:12:51 +03:00
```txt
{
Modified: {
Company: {
Id: 0,
Content: {
2020-11-08 11:53:02 +03:00
Original: before,
Current: after
2020-02-18 09:12:51 +03:00
}
}
}
}
```
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.Modified.verified.txt#L1-L11' title='Snippet source file'>snippet source</a> | <a href='#snippet-CoreTests.Modified.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 07:58:10 +03:00
2020-10-26 01:16:27 +03:00
## Queryable
2020-01-06 15:56:57 +03:00
This test:
<!-- snippet: Queryable -->
<a id='snippet-queryable'></a>
2020-01-06 15:56:57 +03:00
```cs
2020-10-26 00:55:58 +03:00
var queryable = data.Companies
.Where(x => x.Content == "value");
await Verifier.Verify(queryable);
2020-01-06 15:56:57 +03:00
```
2021-03-30 06:08:18 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L180-L186' title='Snippet source file'>snippet source</a> | <a href='#snippet-queryable' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 15:56:57 +03:00
Will result in the following verified file:
2020-04-16 01:34:23 +03:00
### EF Core
<!-- snippet: CoreTests.Queryable.verified.txt -->
<a id='snippet-CoreTests.Queryable.verified.txt'></a>
2020-02-18 09:12:51 +03:00
```txt
2020-07-07 06:40:02 +03:00
SELECT [c].[Id], [c].[Content]
FROM [Companies] AS [c]
WHERE [c].[Content] = N'value'
2020-02-18 09:12:51 +03:00
```
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.Queryable.verified.txt#L1-L3' title='Snippet source file'>snippet source</a> | <a href='#snippet-CoreTests.Queryable.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-04-16 01:34:23 +03:00
### EF Classic
<!-- snippet: ClassicTests.Queryable.verified.txt -->
<a id='snippet-ClassicTests.Queryable.verified.txt'></a>
2020-04-16 01:34:23 +03:00
```txt
2020-07-07 06:40:02 +03:00
SELECT
[Extent1].[Id] AS [Id],
[Extent1].[Content] AS [Content]
FROM [dbo].[Companies] AS [Extent1]
WHERE N'value' = [Extent1].[Content]
2020-04-16 01:34:23 +03:00
```
<sup><a href='/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Queryable.verified.txt#L1-L5' title='Snippet source file'>snippet source</a> | <a href='#snippet-ClassicTests.Queryable.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-08-20 07:48:49 +03:00
<!-- endSnippet -->
2020-01-06 15:56:57 +03:00
2020-10-26 01:16:27 +03:00
## AllData
This test:
<!-- snippet: AllData -->
<a id='snippet-alldata'></a>
```cs
2020-12-04 09:25:13 +03:00
await Verifier.Verify(data.AllData())
.ModifySerialization(
serialization =>
serialization.AddExtraSettings(
serializer =>
serializer.TypeNameHandling = TypeNameHandling.Objects));
2020-10-26 01:16:27 +03:00
```
2021-03-30 06:08:18 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L161-L170' title='Snippet source file'>snippet source</a> | <a href='#snippet-alldata' title='Start of snippet'>anchor</a></sup>
2020-10-26 01:16:27 +03:00
<!-- endSnippet -->
Will result in the following verified file with all data in the database:
<!-- snippet: CoreTests.AllData.verified.txt -->
<a id='snippet-CoreTests.AllData.verified.txt'></a>
```txt
2020-10-26 01:45:27 +03:00
[
{
2020-11-08 11:53:02 +03:00
$type: Company,
2021-05-22 04:16:37 +03:00
Id: Id_1,
2020-11-08 11:53:02 +03:00
Content: Company1
2020-10-26 01:45:27 +03:00
},
{
2020-11-08 11:53:02 +03:00
$type: Company,
2021-05-22 04:16:37 +03:00
Id: Id_2,
2020-11-08 11:53:02 +03:00
Content: Company2
2020-10-26 01:45:27 +03:00
},
{
2020-11-08 11:53:02 +03:00
$type: Company,
2021-05-22 04:16:37 +03:00
Id: Id_3,
2020-11-08 11:53:02 +03:00
Content: Company3
2020-10-26 01:45:27 +03:00
},
{
2020-11-08 11:53:02 +03:00
$type: Company,
2021-05-22 04:16:37 +03:00
Id: Id_4,
2020-11-08 11:53:02 +03:00
Content: Company4
2020-10-26 01:45:27 +03:00
},
{
2020-11-08 11:53:02 +03:00
$type: Employee,
2021-05-22 04:16:37 +03:00
Id: Id_5,
CompanyId: Id_1,
2020-11-08 11:53:02 +03:00
Content: Employee1,
2020-10-26 01:45:27 +03:00
Age: 25
},
{
2020-11-08 11:53:02 +03:00
$type: Employee,
2021-05-22 04:16:37 +03:00
Id: Id_6,
CompanyId: Id_1,
2020-11-08 11:53:02 +03:00
Content: Employee2,
2020-10-26 01:45:27 +03:00
Age: 31
},
{
2020-11-08 11:53:02 +03:00
$type: Employee,
2021-05-22 04:16:37 +03:00
Id: Id_7,
CompanyId: Id_2,
2020-11-08 11:53:02 +03:00
Content: Employee4,
2020-10-26 01:45:27 +03:00
Age: 34
}
]
2020-10-26 01:16:27 +03:00
```
2020-10-26 01:45:27 +03:00
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.AllData.verified.txt#L1-L43' title='Snippet source file'>snippet source</a> | <a href='#snippet-CoreTests.AllData.verified.txt' title='Start of snippet'>anchor</a></sup>
2020-10-26 01:16:27 +03:00
<!-- endSnippet -->
2021-03-30 06:08:18 +03:00
## IgnoreNavigationProperties
`IgnoreNavigationProperties` extends `SerializationSettings` to exclude all navigation properties from serialization:
<!-- snippet: IgnoreNavigationProperties -->
<a id='snippet-ignorenavigationproperties'></a>
```cs
[Test]
public async Task IgnoreNavigationProperties()
{
var options = DbContextOptions();
await using SampleDbContext data = new(options);
Company company = new()
{
Content = "company"
};
Employee employee = new()
{
Content = "employee",
Company = company
};
await Verifier.Verify(employee)
.ModifySerialization(
x => x.IgnoreNavigationProperties(data));
}
```
<sup><a href='/src/Verify.EntityFramework.Tests/CoreTests.cs#L71-L94' title='Snippet source file'>snippet source</a> | <a href='#snippet-ignorenavigationproperties' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
2020-10-26 01:16:27 +03:00
2020-01-17 12:42:09 +03:00
2020-01-06 07:58:10 +03:00
## Icon
2020-01-06 13:46:25 +03:00
[Database](https://thenounproject.com/term/database/310841/) designed by [Creative Stall](https://thenounproject.com/creativestall/) from [The Noun Project](https://thenounproject.com/creativepriyanka).