Skip to content

Commit 4cd8935

Browse files
authored
Remove xref in code block (#5287)
1 parent 2be33b1 commit 4cd8935

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

entity-framework/core/what-is-new/ef-core-9.0/breaking-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ There are several common situations when this exception can be thrown:
6969
- **Mitigation**: This is an unsupported scenario. The warning can be suppressed using the code snippet below, but this scenario will likely stop working in a future EF Core release. The recommended solution is [to generate a separate set of migrations for each provider](xref:core/managing-schemas/migrations/providers).
7070
- The migrations are generated, modified or chosen dynamically by replacing some of the EF services.
7171
- **Mitigation**: The warning is a false positive in this case and should be suppressed:
72-
`options.ConfigureWarnings(w => w.Ignore(<xref:Microsoft.EntityFrameworkCore.Diagnostics.RelationalEventId.PendingModelChangesWarning>))`
72+
`options.ConfigureWarnings(w => w.Ignore(Microsoft.EntityFrameworkCore.Diagnostics.RelationalEventId.PendingModelChangesWarning))`
7373
- You are using ASP.NET Core Identity and change options that affect the model, such as:
7474

7575
```csharp

0 commit comments

Comments
 (0)