From 6dfb5810b9a3cc2c7c44a3d5957ccb52ee9fee5c Mon Sep 17 00:00:00 2001 From: dlebee <36390643+dlebee@users.noreply.github.com> Date: Wed, 11 Aug 2021 17:43:45 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) 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(); } } ```