Skip to content

Commit 6635c67

Browse files
Update README.md
1 parent 4623dfb commit 6635c67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ Access to DynamicFilters is done via extension methods in the EntityFramework.Dy
1818

1919
Supports MS SQL Server (including Azure), MySQL, Oracle (*see notes below), and PostgreSQL.
2020

21+
## Installation
22+
The package is also available on NuGet: [EntityFramework.DynamicFilters](https://www.nuget.org/packages/EntityFramework.DynamicFilters).
23+
2124
## Changes in Version 2
2225
* Added support for creating filters that reference child classes/navigation properties. See [Issue #65](https://github.com/jcachat/EntityFramework.DynamicFilters/issues/65) for more details. Requires that FK properties are defined on the models. Also includes support for Any() and All() on child collections.
2326
* Filter parameter values can now reference the current DbContext instance. See [Parameter Expressions](#parameter-expressions).
@@ -31,9 +34,6 @@ modelBuilder.EnableFilter("UserOrg", (MyContext ctx) => !ctx.UserIsAdmin);
3134
```
3235
This will create a filter to restrict queries on the Notes table to only those records made by people in the current users Organization. The filter will only be enabled if the current user is not an Administrator. And both expressions access properties in the current DbContext instance.
3336

34-
## Installation
35-
The package is also available on NuGet: [EntityFramework.DynamicFilters](https://www.nuget.org/packages/EntityFramework.DynamicFilters).
36-
3737

3838
## Defining Filters
3939

0 commit comments

Comments
 (0)