SapphireDb 3.1.8-alpha

This is a prerelease version of SapphireDb.
dotnet add package SapphireDb --version 3.1.8-alpha
                    
NuGet\Install-Package SapphireDb -Version 3.1.8-alpha
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SapphireDb" Version="3.1.8-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SapphireDb" Version="3.1.8-alpha" />
                    
Directory.Packages.props
<PackageReference Include="SapphireDb" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SapphireDb --version 3.1.8-alpha
                    
#r "nuget: SapphireDb, 3.1.8-alpha"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=SapphireDb&version=3.1.8-alpha&prerelease
                    
Install SapphireDb as a Cake Addin
#tool nuget:?package=SapphireDb&version=3.1.8-alpha&prerelease
                    
Install SapphireDb as a Cake Tool

SapphireDb - Server for Asp.Net Core Build Status

SapphireDb is a self-hosted, easy to use realtime database for Asp.Net Core and EF Core.

It creates a generic API you can easily use with different clients to effortlessly create applications with realtime data synchronization. SapphireDb should serve as a self hosted alternative to firebase realtime database and firestore on top of .Net.

Check out the documentation for more details: Documentation

Features

  • 🔧 Dead simple configuration
  • 📡 Broad technology support
  • 💻 Self hosted
  • 📱 Offline support
  • 💾 Easy to use CRUD operations
  • ⚡ Model validation
  • ✔️ Database support
  • 📂 Supports joins/includes
  • ➿ Complex server evaluated queries
  • 🔌 Actions
  • 🔑 Authorization included
  • ✉️ Messaging
  • 🌐 Scalable

Learn more

Installation

Install package

To install the package execute the following command in your package manager console

PM> Install-Package SapphireDb

You can also install the extension using Nuget package manager. The project can be found here: https://www.nuget.org/packages/SapphireDb/

Configure DbContext

You now have to change your DbContext to derive from SapphireDbContext.

// Change DbContext to SapphireDbContext
public class MyDbContext : SapphireDbContext
{
  public MyDbContext(DbContextOptions<MyDbContext> options) : base(options)
  {

  }

  public DbSet<User> Users { get; set; }

  public DbSet<Test> Tests { get; set; }
}

Register services and update pipeline

To use the SapphireDb you also have to make some changes in your Startup.cs-File.

public class Startup
{
  public void ConfigureServices(IServiceCollection services)
  {
    //Register services
    services.AddSapphireDb(...)
      .AddContext<MyDbContext>(cfg => ...);
  }

  public void Configure(IApplicationBuilder app)
  {
    //Add Middleware
    app.UseSapphireDb();
  }
}

Examples

Server

AspNet Core Example

Client

React Example

Svelte Example

NodeJs Example

Angular Example

Documentation

Check out the documentation for more details: Documentation

Implementations/Packages

Server

SapphireDb - Server for Asp.Net Core

SapphireDb.RedisSync

SapphireDb.HttpSync

Client

sapphiredb - JS client (JS, NodeJs, React, Svelte, ...)

ng-sapphiredb - Angular client

Author

Morris Janatzek (morrisjdev)

Licenses

SapphireDb - MIT License

sapphiredb-js - MIT License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on SapphireDb:

Package Downloads
SapphireDb.RedisSync

Redis sync module for SapphireDb

SapphireDb.HttpSync

Http sync module for SapphireDb

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.8-alpha 1,014 6/16/2021
3.1.7-alpha 997 3/10/2021
3.1.6-alpha 969 3/9/2021
3.1.5-alpha 1,086 10/26/2020
3.1.4-alpha 1,088 10/26/2020
3.1.3-alpha 1,013 10/26/2020
3.1.2-alpha 1,039 10/26/2020
3.1.1-alpha 1,141 8/2/2020
3.1.0-alpha 1,023 8/2/2020
3.0.0 19,712 7/25/2020
2.2.1 1,148 7/22/2020
2.2.0 1,848 6/20/2020
2.1.3 1,192 4/4/2020
2.1.2 1,239 4/3/2020
2.1.1 1,189 3/24/2020
2.1.0 1,400 3/21/2020
2.0.0 1,178 2/24/2020
1.5.0 1,216 2/18/2020
1.4.0 1,247 2/8/2020
1.3.0 1,208 1/21/2020
1.2.0 1,200 1/15/2020
1.1.6 1,150 1/13/2020
1.1.5 1,247 1/7/2020
1.1.4 1,230 1/7/2020
1.1.3 1,170 1/6/2020
1.1.1 1,248 1/4/2020
1.1.0 1,286 1/3/2020
1.0.7 1,222 1/2/2020
1.0.6 1,277 12/27/2019
1.0.5 1,188 12/22/2019
1.0.4 1,204 12/18/2019
1.0.3 1,162 12/9/2019
1.0.2 1,067 12/8/2019
1.0.1 1,127 12/8/2019
1.0.0 1,186 12/4/2019