updated docs.
This commit is contained in:
parent
522c37deaf
commit
857a9aa183
@ -18,15 +18,18 @@ Full Version | NuGet
|
||||
PoweredSoft.DynamicQuery | <a href="https://www.nuget.org/packages/PoweredSoft.DynamicQuery/" target="_blank">[![NuGet](https://img.shields.io/nuget/v/PoweredSoft.DynamicQuery.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.DynamicQuery/)</a> | ```PM> Install-Package PoweredSoft.DynamicQuery```
|
||||
PoweredSoft.DynamicQuery.Core | <a href="https://www.nuget.org/packages/PoweredSoft.DynamicQuery.Core/" target="_blank">[![NuGet](https://img.shields.io/nuget/v/PoweredSoft.DynamicQuery.Core.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.DynamicQuery.Core/)</a> | ```PM> Install-Package PoweredSoft.DynamicQuery.Core```
|
||||
PoweredSoft.DynamicQuery.AspNetCore | <a href="https://www.nuget.org/packages/PoweredSoft.DynamicQuery.AspNetCore/" target="_blank">[![NuGet](https://img.shields.io/nuget/v/PoweredSoft.DynamicQuery.AspNetCore.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.DynamicQuery.AspNetCore/)</a> | ```PM> Install-Package PoweredSoft.DynamicQuery.AspNetCore```
|
||||
PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson | <a href="https://www.nuget.org/packages/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson/" target="_blank">[![NuGet](https://img.shields.io/nuget/v/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson/)</a> | ```PM> Install-Package PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson```
|
||||
|
||||
## Using in ASP.NET Core
|
||||
|
||||
The package Asp.net core of dynamic query will help you start to use Dynamic Query faster in your web project.
|
||||
|
||||
### How to configure during startup
|
||||
> For NET CORE 2.x look at v2.0 branch.
|
||||
|
||||
### How to configure during startup (NET Core 3)
|
||||
|
||||
```csharp
|
||||
using PoweredSoft.DynamicQuery.AspNetCore;
|
||||
using PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson;
|
||||
|
||||
public class Startup
|
||||
{
|
||||
@ -34,7 +37,7 @@ public class Startup
|
||||
{
|
||||
services
|
||||
.AddMvc()
|
||||
.AddPoweredSoftDynamicQuery();
|
||||
.AddPoweredSoftJsonNetDynamicQuery();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user