New Post: InsertOrUpdateGraph, SyncObjectGraph and SyncObjectsStatePreCommit
Sounds like you don't have you DI/IoC configured correctly for you MVC app, the IDataContext and DbContext need to have singleton behavior, with it's lifecycle bound to the lifecycle of the http...
View ArticleNew Post: Unit test, what do they really test?
Please see integration test (think that's what your looking for)...
View ArticleNew Post: Update record ... except one field
You have two employees with the same Primary Key in the Context. Update all the properties private void Update(Employee employee) { var e = _repoEmployee.GetById(employee.Id);...
View ArticleNew Post: How do you do projections while you do paging?
Please create a custom repository method and use skip and take https://genericunitofworkandrepositories.codeplex.com/wikipage?title=Adding%20Custom%20Repositories&referringTitle=Documentation
View ArticleNew Post: Custom Repositories
Decrease the footprint of the framework and ensure the framework stays as lightweight as possible.
View ArticleUpdated Wiki: Home
UoW Repo Framework VNext: ASP.NET 5 Web API and pure HTML5/AngularJS for the presentation layer (no Razor and MVC Controller), EF 7.Generic Unit of Work and Repositories (lightweight fluent) Framework...
View ArticleUpdated Wiki: Home
UoW Repo Framework VNext: ASP.NET 5 Web API and pure HTML5/AngularJS for the presentation layer (no Razor and MVC Controller), EF 7.Generic Unit of Work and Repositories (lightweight fluent) Framework...
View ArticleUpdated Wiki: Home
UoW Repo Framework VNext: ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript) for the presentation layer (no Razor and MVC Controller), EF 7.Generic Unit of Work and Repositories...
View ArticleUpdated Wiki: Home
UoW Repo Framework VNext: ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7.Generic Unit of Work and Repositories...
View ArticleUpdated Wiki: Home
UoW Repo Framework VNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7.Generic Unit of Work and...
View ArticleUpdated Wiki: Home
UoW Repo Framework VNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7.Generic Unit of Work and...
View ArticleUpdated Wiki: Home
URF VNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7.Generic Unit of Work and Repositories (lightweight...
View ArticleUpdated Wiki: Home
URF VNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7 - ETA: 6/2015Generic Unit of Work and Repositories...
View ArticleUpdated Wiki: Home
URF vNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7 - ETA: 6/2015Generic Unit of Work and Repositories...
View ArticleNew Post: Integration with Azure Elastic Scale and connection pool issues
Has anyone trying to use this framework with the Azure Elastic Scale library? I've been trying to integrate this and while it is technically "working" (it gives me back the correct SQL connection when...
View ArticleUpdated Wiki: Home
URF vNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7 - ETA: 6/2015URF is a Unit of Work and Repositories...
View ArticleUpdated Wiki: Home
URF vNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7 - ETA: 6/2015URF (Unit of Work and Repositories...
View ArticleUpdated Wiki: Home
URF vNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7 - ETA: 6/2015URF (Unit of Work and Repositories...
View ArticleUpdated Wiki: Home
URF vNext (v3.4): ASP.NET 5 Web API and pure HTML5/AngularJS (in full TypeScript 1.5a) for the presentation layer (no Razor and MVC Controller), EF 7 - ETA: 6/2015URF (Unit of Work & Repositories...
View ArticleNew Post: ObjectState vs System.Data.Entity.EntityState ?
Hi, Why not use System.Data.Entity.EntityState instead of ObjectState in the FW ? 1/ It would avoid the mapping when using EF. Other persistence FW's could still map when needed 2/ Allow to throw away...
View Article