Skip to content

Commit 3665177

Browse files
MnatsakanMargaryanMnatsakanMargaryan
authored andcommitted
readme updated
1 parent 264f56f commit 3665177

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ builder.AddGridify(params Assembly[] assemblies);
3535

3636
## Usage
3737
**Creating Mappings for Your Entities:**
38-
To efficiently filter and query your Book entity using Gridify, you need to create a mapping class that extends GridifyMapper<T>.
38+
To efficiently filter and query your Book entity using Gridify, you need to create a mapping class that extends FilterMapper<T>.
3939
This class will define how each property in your Book entity should be mapped.
4040

4141
Here’s an example of how to set up the Book entity and its corresponding mapping class:
@@ -52,7 +52,7 @@ public class Book
5252
public Book OtherBook { get; set; }
5353
}
5454

55-
public class BookMapper : GridifyMapper<Book>
55+
public class BookMapper : FilterMapper<Book>
5656
{
5757
public BookMapper()
5858
{

src/GridifyExtensions/GridifyExtensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageReadmeFile>Readme.md</PackageReadmeFile>
99
<Authors>Pandatech</Authors>
1010
<Copyright>MIT</Copyright>
11-
<Version>1.2.1</Version>
11+
<Version>1.2.2</Version>
1212
<PackageId>Pandatech.GridifyExtensions</PackageId>
1313
<Title>Pandatech.Gridify.Extensions</Title>
1414
<PackageTags>Pandatech, library, Gridify, Pagination, Filters</PackageTags>

0 commit comments

Comments
 (0)