In my controllers, I access my repositories like so: private readonly IProjectRepository projectRepository;
I’m using SharpArch with SharpArch.Contrib’s [Transaction] attribute.The Transaction attribute is added to an application service method and if an exception is thrown during that method then any cha
I would like to know how to make use of SharpArch.WcfClient.Castle.WcfSessionFacility as an alternative to the following verbose-ness.
I am having a problem returning a JsonNetResult for an object when it is a property of another object, however when I fetch the object explicitly it works e.g.
What\'s the best approach for testing multiple db\'s in a s#arparch project? The current SetUp() code in MappingIntegrationTests tries to test each assembly against the first database.
i\'m using Asp.net MVC with Sharp Architecture. I have this code: return _repositoryKeyWord.FindAl开发者_开发知识库l(x => x.Category.Id == idCAtegory)
This question was asked before but the answers all show how to export the hbm files from fluentnhibernate. We are using S#arpArchitecture which wraps fluent.I am able to export the schema but what I r
I\'m trying to code my domain to interfaces types rather than concrete types. Skeleton examples of two domain objects are:
I’m not sure if i’m doing this the right way so i’m reaching out for a little help...there are some new features in the trunk that I want to take advantage of in my current s#arp project.
I am using the nice s#arp repositories and the paging extension method plus sorting like this: public ViewResult Index(in开发者_JAVA技巧t? page, GridSortOptions sort)