Ornament.Uow.EF

Package Description


Keywords
Ornament, UOW, Unit, of, work, MVC, asp.core, .net, core, EF, Entity, framework
License
MIT
Install
Install-Package Ornament.Uow.EF -Version 0.1.3

Documentation

Ornament

Unit of work##

###Uow for NHibernate setting ###

install packages from nuget

install-package Ornament.Uow.NHibernate and Microsoft.NETCore.Portable.Compatibility

change project.json

"frameworks": {
    "netcoreapp1.0": {
      "imports": [
        "dotnet5.6",
        "portable-net45+win8",
        "net461" //add net461 
      ]
    }
  },
  var uowFactory = services
                .MsSql2008(option => { 
                    option.ConnectionString(Configuration.GetConnectionString("default")); 
                    })
  uowFactory.AddAssemblyOf(typeof(Startup)); //add FluentMappingClass from Assembly.