I have a S#arp Architecture app that implements a lightweight queue-processing thing whereby various threads pull entities from a list and set their status to mark the fact that processing has started
I\'m using the Sharp-Architecture framework and I have an entity that looks like this: public class BaanAlternateItemKey : ValueObject
I have an MVC app via SharpArch. In the view I have: Html.DropDownListFor(x => x.Location, new SelectList(Model.PossibleLocations, \"Id\", \"Address\"),
I\'m working on a sharp-architecture project that mixes fluent mappings and auto mappings. A basic sharp-architecture project already has a method (AutoMappingConfiguration.ShouldMap) that determines
I\'m having a problem where Sharp Architecture will correctly map everything I have setup in my IAutoMappingOverride classes, except for Formula. These get simply ignored and thus I get SQL\'s invalid
Our team already works on a project with .NET 4, NHibernate 3.0 and SharpArchitecture 1.9.5. The problem is we can\'t get the repositories to work and fetch the data.
By default, the solution generated from Sharp Architecture\'s templify package conf开发者_高级运维igures NHibernate using an NHibernate.config file in the {SolutionName}.Web project. I would like to r
I am exploring sharp architecture, and have seen that it is actually passing the entities around to other layer (as far as presentation layers). S开发者_高级运维houldn\'t it be exposing interfaces of
I\'m trying to ignore the property which is a ReadOnlyCollection and map the private property. I\'m getting the following error:
Do you know if it\'s possible to make an AJAX request and have the model binder properly constitute an object based on the parameter provided?