Skip to content

Commit 7e5ee6f

Browse files
authored
fix: replace == with = in variable assignment (#5211)
1 parent 8279d8b commit 7e5ee6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

entity-framework/core/querying/filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ If your query filter needs to access a tenant ID or similar contextual informati
142142
```c#
143143
private sealed class CustomerEntityConfiguration : IEntityTypeConfiguration<Customer>
144144
{
145-
private readonly SomeDbContext _context == null!;
145+
private readonly SomeDbContext _context = null!;
146146

147147
public void Configure(EntityTypeBuilder<Customer> builder)
148148
{

0 commit comments

Comments
 (0)