Skip to content
This repository was archived by the owner on Dec 21, 2019. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 580 Bytes

File metadata and controls

12 lines (9 loc) · 580 Bytes

Rocket.EntityFrameworkCore Build status

Provides EntityFrameworkCore integrations for RocketMod .NET Game Server Plugin Framework.

To use in your plugins, add Rocket.EntityFrameworkCore to your plugin from NuGet and then use in your Load():

this
  .GetEntityFrameworkCoreBuilder()
  .AddEntityFrameworkCore();

After that just add your normal DbContext's by extending PluginDbContext and this will handle the rest.