New Post: public virtual void Insert(TEntity entity)
So for every new Entity I need to call InsertOrUpdateGraph in the repository? Why this InsertOrUpdateGraph is not implemented in the Service?
View ArticleNew Post: Latest Release: Sample Northwind.Web Issues
In running the project I found a particular process was needed to get everything working. Here's what I did. Open the Sample Northwind.sln and build the project. This will install the correct packages...
View ArticleNew Post: Latest Release: Sample Northwind.Web Issues
The database creation needs to execute, rebuild the database, and reseed the data each and every time so that schema and data is guaranteed to be in specific state for each integration test sets....
View ArticleNew Post: Latest Release: Sample Northwind.Web Issues
Thank you for the response. I believe we'd agree that the state of the data should remain consistent for a repeatable test. Two conclusions I drew, invocation of the integration methods retained a...
View ArticleNew Post: Latest Release: Sample Northwind.Web Issues
We haven't had any issues of "cannot drop database because it's currently in use", however that doesn't mean that this isn't happening, we'll look into this and see if we can reproduce this issue....
View ArticleNew Post: public virtual void Insert(TEntity entity)
This is a bug, InsertOrUpdateGraph needs to be on the IService and Service, for now feel free to implement this directly, we will release an update with this fix shortly. Thank you for notifying us...
View ArticleCommented Unassigned: Odata Entity Childs Count [1237]
Hi,How can I count childs using odata.Thanks,YComments: Hi Y, this is not an issue and is actually an implementation question, if you could be so kind to post this under discussions, we can look into...
View ArticleClosed Unassigned: Odata Entity Childs Count [1237]
Hi,How can I count childs using odata.Thanks,YComments: OData implementation question vs. actual "issue".
View ArticleNew Post: a few questions
Hi Le, Nice framework and very nice of you to share! I have read a few blogs of yours but I have some questions if you don't mind.What is the Service layer needed for? Is it optional?How do I get an...
View ArticleUpdated Wiki: Transactions
var productRepository = new Repository<Product>(this);var product2 = await productRepository.FindAsync(7);product2.Dump();// Begin transactionunitOfWork.BeginTransaction();try{...
View ArticleUpdated Wiki: Transactions
var productRepository = new Repository<Product>(this); var product2 = await productRepository.FindAsync(7); product2.Dump(); // Begin transaction unitOfWork.BeginTransaction(); try{...
View ArticleUpdated Wiki: Transactions
LinqPad Examplevar productRepository = new Repository<Product>(this); var product2 = await productRepository.FindAsync(7); product2.Dump(); // Begin transaction unitOfWork.BeginTransaction();...
View ArticleUpdated Wiki: Documentation
"*" denotes last updatedv3.3 Adding Custom Repositories*7/24/2014Real (Integration) Tests Added - *7/20/2014Sample application refreshed with AngularJS & Angular Kendo - *5/9/2014v3.2Quick Samples...
View ArticleUpdated Wiki: Quick Samples in LINQPad
Quick Samples in LINQPad*Please download to see real world implementation in sample ASP.NET MVC 5 application.Download to LINQPad *linq file used in this example:...
View ArticleUpdated Wiki: Transactions
Built in transaction handling in UnitOfWorkLinqPad Example var productRepository = new Repository<Product>(this); var product2 = await productRepository.FindAsync(7); product2.Dump(); // Begin...
View ArticleUpdated Wiki: Documentation
"*" denotes last updatedv3.3 Adding Custom Repositories*7/24/2014Real (Integration) Tests Added - *7/20/2014Sample application refreshed with AngularJS & Angular Kendo - *5/9/2014v3.2Quick Samples...
View ArticleUpdated Wiki: Documentation
"*" denotes last updatedv3.3 Adding Custom Repositories*7/24/2014Real (Integration) Tests Added - *7/20/2014Sample application refreshed with AngularJS & Angular Kendo - *5/9/2014v3.2Quick Samples...
View ArticleUpdated Wiki: Documentation
"*" denotes last updatedv3.3 Adding Custom Repositories*7/24/2014Real (Integration) Tests Added - *7/20/2014Sample application refreshed with AngularJS & Angular Kendo - *5/9/2014v3.2Quick Samples...
View ArticleNew Post: Registering IoC in a Bounded Context scenario
I have an app using the IObjectState in my entities (got the idea from Julie Lerman). I really like your framework implementation and had to take advantage. I'm using it with Bounded Contexts and I'm...
View ArticleNew Post: Registering IoC in a Bounded Context scenario
This should get you started. http://blog.longle.net/2013/07/30/bounded-dbcontext-with-generic-unit-of-work-generic-repositories-entity-framework-6-unity-3-0-in-mvc-4
View Article