New Post: how can i use IdentityDbContext with this solution it is not...
DBContext public class MeetifyDbContext : IdentityDbContext<MeetifyUser, MeetifyRole, int, MeetifyUserLogin, MeetifyUserRole, MeetifyUserClaim>{ public MeetifyDbContext() :...
View ArticleNew Post: This solution supports OData V3, can we support V4
I am newbie to OData was reading following article from asp.nethttp://www.asp.net/web-api/overview/odata-support-in-aspnet-web-api/odata-v4/create-an-odata-v4-endpoint Install-Package...
View ArticleUpdated Wiki: Documentation
Here are the only two (2) requirements to bootstrap your app and integrate with the framework.All entities are required to implement IObjectState, we've done this through implementing a base entity...
View ArticleUpdated Wiki: Documentation
Here are the only two (2) requirements to bootstrap your app and integrate with the framework.All entities are required to implement IObjectState, we've done this through implementing a base entity...
View ArticleUpdated Wiki: Documentation
Here are the only two (2) requirements to bootstrap your app and integrate with the framework.All entities are required to implement IObjectState, we've done this through implementing a base entity...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleUpdated Wiki: Home
Generic Unit of Work and Repositories (lightweight fluent) Framework with Sample Northwind ASP.NET MVC 5 Application This framework minimizes the surface area of your ORM technology from disseminating...
View ArticleNew Post: Linq to get deep load unsuccessful
I'm trying to implement your framework in my project and when I try to access a navigate object it is null! I have four tables like the following:var query = from p in plans join pr in planRole on...
View ArticleNew Post: Generic Unit of Work & (Extensible) Repositories Framework with...
The real reason you couldn't lazy load was that the Configuration.ProxyCreationEnabled setting is false. Set that and the LazyLoadingEnabled property to true and then lazy loading will work (if your...
View ArticleNew Post: Query
Hi List, i have the following entities: public partial class Project:BaseEntity,IEntity<long> { ......... public virtual ICollection<ProjectAddressType> DeliveryAddress {get;set;} } public...
View ArticleNew Post: Query
Hi List, i have the following entities: public partial class Project:BaseEntity,IEntity<long> { ......... public virtual ICollection<ProjectAddressType> DeliveryAddress {get;set;} } public...
View ArticleNew Post: Dispose in CustomerController
Hi, I see below code in CustomerController: protected override void Dispose(bool disposing){ if (disposing) { _unitOfWorkAsync.Dispose(); } base.Dispose(disposing); } Also I see the code in UnityConfig...
View Article