diff --git a/README.md b/README.md index 605d8a4..eb801a4 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ PoweredSoft.Data | [![NuGet](https://img.shields.io/nuget/v/PoweredSoft.Data.EntityFramework.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.Data.EntityFramework/) | ```PM> Install-Package PoweredSoft.Data.EntityFramework``` PoweredSoft.Data.EntityFrameworkCore | [![NuGet](https://img.shields.io/nuget/v/PoweredSoft.Data.EntityFrameworkCore.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.Data.EntityFrameworkCore/) | ```PM> Install-Package PoweredSoft.Data.EntityFrameworkCore``` PoweredSoft.Data.MongoDB | [![NuGet](https://img.shields.io/nuget/v/PoweredSoft.Data.MongoDB.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.Data.MongoDB/) | ```PM> Install-Package PoweredSoft.Data.MongoDB``` +PoweredSoft.Data.InMemory | [![NuGet](https://img.shields.io/nuget/v/PoweredSoft.Data.InMemory.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.Data.InMemory/) | ```PM> Install-Package PoweredSoft.Data.InMemory``` # In your application you may do the following @@ -28,6 +29,9 @@ public class Startup // for ef core services.AddPoweredSoftEntityFrameworkCoreDataServices(); + + // for in memory + services.AddPoweredSoftInMemoryDataServices(); } } ```