diff --git a/docs/usage/use-specification-dbcontext.md b/docs/usage/use-specification-dbcontext.md index fd4f401d..a2638c78 100644 --- a/docs/usage/use-specification-dbcontext.md +++ b/docs/usage/use-specification-dbcontext.md @@ -30,7 +30,7 @@ public class SampleDbContext : DbContext } ``` -A specification can be applied directly to this `DbSet` using the `WithSpecification` extension method defined in `Ardalis.Specification.EntityFrameworkCore` package. Assuming a Specification is defined similar to the `ItemByIdSpec` described in [How to Create Specifications](./creating-specifications.md), the following code demonstrates putting these pieces together. +A specification can be applied directly to this `DbSet` using the `WithSpecification` extension method defined in `Ardalis.Specification.EntityFrameworkCore` package. Assuming a Specification is defined similar to the `ItemByIdSpec` described in [How to Create Specifications](./create-specifications.md), the following code demonstrates putting these pieces together. ```csharp // handling of IDisposable DbContext intentionally left out