From adf96fc5484b3392e1ae5f9cc18444f1ec640dc9 Mon Sep 17 00:00:00 2001 From: ta1H3n <38425616+ta1H3n@users.noreply.github.com> Date: Fri, 30 Dec 2022 11:45:22 +0100 Subject: [PATCH] Update url path --- docs/usage/use-specification-dbcontext.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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