BmgBreeze.Persistence
0.1.5
dotnet add package BmgBreeze.Persistence --version 0.1.5
NuGet\Install-Package BmgBreeze.Persistence -Version 0.1.5
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="BmgBreeze.Persistence" Version="0.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BmgBreeze.Persistence --version 0.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: BmgBreeze.Persistence, 0.1.5"
#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.
// Install BmgBreeze.Persistence as a Cake Addin #addin nuget:?package=BmgBreeze.Persistence&version=0.1.5 // Install BmgBreeze.Persistence as a Cake Tool #tool nuget:?package=BmgBreeze.Persistence&version=0.1.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Breeze Server for Aspnet.Core and EFCore
this project is not officialy supported by the orignal team
Installing Steps
Startup.cs Edit the startup.cs file to add BreezeFilter
namespace BmgBreeze
{
public class Startup
{
// ****************************
// ****************************
public void ConfigureServices(IServiceCollection services)
{
var mvcBuilder = services.AddMvc();
mvcBuilder.AddJsonOptions(opt =>
{
var ss = JsonSerializationFns.UpdateWithDefaults(opt.SerializerSettings);
var resolver = ss.ContractResolver;
if (resolver != null)
{
var res = resolver as DefaultContractResolver;
res.NamingStrategy = null; // <<!-- this removes the camelcasing
}
});
mvcBuilder.AddMvcOptions(o => { o.Filters.Add(new GlobalExceptionFilter()); });
}
}
}
BreezeController.cs Create you controller
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using BmgBreeze.Persistence.EFCore;
using Newtonsoft.Json.Linq;
using Northwind.Models;
namespace Northwind.Controllers
{
[Produces("application/json")]
[Route("Breeze/breeze")]
public class BmgBreezeController : Controller
{
private EFPersistenceManager<NorthwindDb> PersistenceManager;
private readonly NorthwindDb _context;
public BmgBreezeController(NorthwindDb context)
{
_context = context;
this.PersistenceManager = new EFPersistenceManager<NorthwindDb>(context);
}
[HttpGet]
[Route("Orders")]
public async Task<IEnumerable<Orders>> Get()
{
return this._context.Orders.Include;
}
[HttpGet]
[Route("metadata")]
public string MetaData()
{
return this.PersistenceManager.Metadata();
}
[HttpGet]
[Route("lookups")]
public object Lookups()
{
return new {
Products=this._context.Products.ToList(),
Suppliers=this.Suppliers.Products.ToList(),
};
}
[HttpPost]
[Route("SaveChanges")]
public Persistence.SaveResult SaveChanges([FromBody] JObject saveBundle)
{
return PersistenceManager.SaveChanges(saveBundle);
}
}
}
Product | Versions 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- BmgBreeze.Core (>= 0.1.5)
- Newtonsoft.Json (>= 10.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on BmgBreeze.Persistence:
Package | Downloads |
---|---|
BmgBreeze.Persistence.EFCore
BreezeJs Server Persistence Provider for EntityFrameworkCore |
|
BmgBreeze.AspNetCore
Breezejs Server for Asp.net Core Application |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.5 | 1,842 | 10/30/2017 |