Tagged Questions
An architectural foundation for rapidly building maintainable web applications leveraging the ASP.NET MVC framework with NHibernate.
10
votes
1answer
452 views
How do you integrate Active Directory into a .NET app using DDD?
How are you integrating Active Directory objects (users, groups, etc) into your DDD .NET app? What do your repositories look like and how are you handling LDAP sessions, transactions, and unit of ...
8
votes
3answers
641 views
Problem Implementing StructureMap in VB.Net Conversion of SharpArchitecture
I work in a VB.Net environment and have recently been tasked with creating an MVC environment to use as a base to work from. I decided to convert the latest SharpArchitecture release (Q3 2009) into ...
8
votes
3answers
2k views
Generate XML mappings from fluent Nhibernate
How do I generate xml mappings files as part of my tests in MappingIntegrationTests
I need to manually check if the fluent mappings correlate to the mappings in the leagcy project.
8
votes
2answers
2k views
ASP.NET MVC performance has suddenly become very slow
I'm using Billy McCafferty's rather excellent S#arp Architecture. Everything was spiffing and running very quickly.
I then updated to the the latest ASP.NET MVC RC. This meant I had to get the ...
7
votes
2answers
358 views
nHibernate, ASP.NET MVC, s#arp architecture and multiple identical databases
We are currently developing an application based on NHibernate and ASP.NET MVC and a SQL Server backend. Since I'm fairly new to NHibernate, I'm tryig to understand best practices.
Our application ...
6
votes
3answers
773 views
Sharp Architecture for Winform apps?
The Sharp Architecture Contrib seems to suggest it is possible. It seemed like they had a dependency on "PostSharp" which has now been replaced with Castle interceptors.
Has anyone used the Sharp ...
6
votes
3answers
666 views
Microsoft alternative to S#arp Architecture and underlying technologies
As stated in another post S#arp Architecture combines ASP.NET MVC with other frameworks and tools like
NHibernate 2.0.1
NHibernate.Validator
Fluent NHibernate
Castle Windsor
Rhino Mocks
I ...
5
votes
4answers
820 views
DDD - the rule that Entities can't access Repositories directly
In Domain Driven Design, there seems to be lots of agreement that Entities should not access Repositories directly.
Did this come from Eric Evans Domain Driven Design book, or did it come from ...
5
votes
4answers
789 views
S#arp architecture vs straight IOC + NHibernate + MVC
Are the benefits enough to use another external assembly? How difficult is it to remove S#arp and keep NHibernate at a later point?
5
votes
2answers
759 views
ASP.NET MVC solution organization
I'm looking to create a fairly large-scale ASP.NET MVC project and I want to break it out so that it's not all in one project and one assembly.
I looked at how Oxite does their organization ...
5
votes
3answers
872 views
S#arp Architecture
Can someone share their experiences with s#arp architecture. we have decided to follow mvp pattern for the project. Is this okay to go with it ? The size of the project is medium. we are going to ...
5
votes
7answers
2k views
Would you use the S#arp Architecture in a new commercial project?
The S#arp Architecture seems really cool, but do you think it's still too new to make the commitment to it in an important new project? (Let's assume the project appears to be a good fit for it at ...
4
votes
2answers
372 views
S#arp-architecture, NHibernate multiple databases with typed id
I have multiple databases in my SharpArchitecture project and followed the guide outlined here:
http://wiki.sharparchitecture.net/FAQ.ashx
Everything works fine, except for my entities with assigned ...
4
votes
4answers
566 views
Which layer should construct a View Model?
I'm using the S#arp architecture, and I can't remember where I read it, but they say they ViewModels should be stored at the service layer, and your views should submit the viewmodel to the service ...
4
votes
3answers
676 views
Nhibernate transactions:Avoiding Nhibernate dependency in the service layer
One of practices advocated by Nhibernate experts is to do all actions in inside a transaction.
In a typical 3 tier web architecture, Nhibernate depedency is limited the data layer.
In such a ...
4
votes
3answers
614 views
Best way to deploy an ASP.NET MVC app on IIS 7 / Server 2008?
So far, the only successful strategy I've been able to get by with is the following:
Configure YOURAPP.Web to "Use Local IIS Web Server" and set "Project Url" = http://localhost/yourapp.web
Click ...
4
votes
4answers
1k views
Oxite or S#arp Architecture for new Asp.net CMS site
I'd like to build a CMS site based on Asp.Net Mvc and I want to choose my starting point.
I have seen that there is a lot of interest in the new Microsoft Oxite project also if it seems to be pretty ...
3
votes
3answers
451 views
How to implement repository pattern for multiple database
We currently have two presentation projects (classic ASP and ASP.NET, which uses the "NHibernate Best Practices with ASP.NET" (predecessor or Sharp architecture). We are now rewrite all the classic ...
3
votes
6answers
1k views
Linq Orderby random
i'm using Asp.net MVC with Sharp Architecture.
I have this code:
return _repositoryKeyWord.FindAll(x => x.Category.Id == idCAtegory)
.Take(50).ToList();
How can i order by ...
3
votes
1answer
391 views
automapper + lazy loading + mvc contrib grid + s#arp repositories
I am using the nice s#arp repositories and the paging extension method plus sorting like this:
public ViewResult Index(int? page, GridSortOptions sort)
{
ViewData["sort"] = sort;
...
3
votes
3answers
318 views
Using fluent-nhibernate is it possible to automap a Value Object(s) inside an Entity?
I'm using Sharp Architecture and have a number of situations where Value Objects are used in an Entity. Here is an obvious simple example:
public class Person : Entity
{
protected Person(){}
...
3
votes
2answers
328 views
Can I Automap a tree hierarchy with Fluent NHibernate?
Is it possible to auto map a simple nested object structure?
Something like this:
public class Employee : Entity
{
public Employee() {
this.Manages = new List<Employee>();
}
...
3
votes
4answers
420 views
Would you use MVC 2 already or MVC 1? - S#arp Architectur + Spark View Engine
I am starting to develop a complex web application using S#arp Architectur and the Spark View Engine.
By default MVC 1.0 is used.
But i am thinking about upgrading everything to ASP.NET MVC 2.
...
3
votes
4answers
1k views
A session factory has already been configured with the key of nhibernate.current_session
NOTE: I posted this on sharp architecture google groups also.
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
...
3
votes
1answer
4k views
Fluent Nhibernate Schema Generation
I have been playing about with FluentNhibernate as part of the S#arp Architecture. Below is an example mapping.
public class EventBaseMap : ClassMap<EventBase>
{
public EventBaseMap()
{
...
2
votes
0answers
56 views
Problems with a Sharp Architecture HasOne relationship
I'm building a direct port of the ASP.NET Membership Provider from SQL to Sharp Arch 1.9.6 (using Fluent NHibernate). The issue comes up when trying to create the one-to-one relationship between the ...
2
votes
2answers
173 views
NHibernate + IIS7.5 throws “A session factory has already been configured with the key of nhibernate.current_session”
Using S#arp Architecture 2.3 RC, I am trying to publish two websites which use -mostly- the same codebase. The first of the applications I publish runs correctly, however, upon deploying and trying to ...
2
votes
2answers
108 views
What is the correct way to fill Model for UserControl?
The question is not about MVC but more about code architecture.
I have a partial view that takes a CompanyModel
<%@ Control Language="C#" ...
2
votes
0answers
109 views
Mapping properties between two databases using Fluent NHibernate & S#arp Architecture
I have a scenario where I have a new application built using NHibernate and S#arp Architecture. This application is being integrated into a legacy application that does not use NHibernate. There ...
2
votes
1answer
534 views
sharp architecture problem
I started to use the latest s#arp architecture (1.9.5.0). I sometimes add some data to the db via a console application using something like this:
Repository<OriginalSequence> ...
2
votes
1answer
229 views
T4 for Sharp Architecture/Northwind Problem
I have just downloaded sharparchitecture/Northwind and i'm trying to
get crud scaffolding to work. I have changed nothing except adding
missing reference to this class library. I try to run
...
2
votes
1answer
115 views
S#arp Architecture: Where to put this domain logic
re: S#arp Architecture
A bit of a noob question about where to put certain sorts of domain logic with S#arp. OK, so imagine this domain rule:
When asking for a specific chat room by name, return ...
2
votes
2answers
187 views
nhibernate.config vs web.config
I currently have an ASP.NET MVC project built on top of the S#arp architecture and NHibernate. I currently have a separate nhibernate.config file for my nhibernate configuration. I am considering ...
2
votes
1answer
383 views
nHibernate to Json
I'm aware there are lots of questions around this topic but I really can't seen to nail down a solution so would appreciate some help.
I've just started with S#arp Architecture, and haven't used ...
2
votes
2answers
107 views
Testing state in S#arp Architecture - Best practice
How do I test for state in a S#arp Architecture project?
For example, I have a custom RoleProvider. I want to test the method provider.AddUsersToRoles(string[], string[]).
So I start with:
// ...
2
votes
1answer
319 views
Expected System.String, got System.Guid
I am hoping there is a very simple explanation why I am getting this error.
I am using S#arpArcitecture 1.6. on a 64bit Windows 7 install.
Line 3 of the following code gives the error:
{"Provided ...
2
votes
6answers
279 views
How to implement historical versioning?
We are in the early stages of building a large C# MVC2 app (we also employ Sharp architecture and Nhibernate as part of the ecosystem) on SQL 2008 R2, and one of the requirements is that all database ...
2
votes
2answers
374 views
NHibernate Session gets disposed off on each wcf service method call
I am using Wcf in Sharp Architecture. I have configured my project following northwind sample using WcfSessionStorage etc. I have a method in the wcf service that gets a list of business object using ...
2
votes
2answers
989 views
Fluent NHibernate Mapping - Composite Key
I'm trying to map the following tables/entities in FNH and seem to be getting nowhere fast!
**Tables**
Contacts
ID (PK - int - generated)
...
PhoneTypes
ID (PK - varchar - assigned) ...
2
votes
2answers
496 views
Has S#harp Architecture been updated to work in Visual Studio 2010?
Is anyone out there using S#harp Architecture with VS 2010/.Net 4.0? We are looking for a good ASP.Net MVC framework, and the guys here are already familiar with NHibernate and Spring.Net, so S#harp ...
2
votes
1answer
352 views
Db4o Mvc Application Architecture
I am currently testing out Db4o for an asp.net MVC 2 application idea but there are a few things I'm not quite sure on the best way to proceed.
I want my application to use guessable routes rather ...
2
votes
2answers
592 views
WCF/S#arpArch: underlying ISession is closed after the first call within a request
I know the use of WCF in SA is deprecated because it will move to SA Contrib. But until it has, I guess I have to use the support in SA.
That said, I have a problem with the underlying NHibernate ...
2
votes
3answers
238 views
Is S#arp applicable in classic ASP.NET or even WinForms?
I know S#arp architecture is built for ASP.NET MVC. But I'm wondering if it can be used in classic ASP.NET (WebForms) or even desktop applications like WinForms or WPF.
Thnkas a lot.
2
votes
1answer
262 views
ASP.NET MVC + S#arp Architectur + Spark View Engine - Can't use ActionLinkForAreas
I decided to use ASP.NET MVC, S#arp Architectur and the Spark View Engine for my new project.
First i created a new project with the help of S#arp.
I tried to update the view of the S#arp ...
2
votes
3answers
688 views
NHibernate.Search with S#arp Architecture
Has anyone managed to get nhibernate.search (Lucene) to work with S#arp Architecture? I think I have it all wired up correctly except Luke shows no records or indexes when I run my indexing method. ...
2
votes
1answer
343 views
S#arp Architecture many-to-many mapping overrides not working
I have tried pretty much everything to get M:M mappings working in S#arp Architecture. Unfortunately the Northwind example project does not have a M:M override.
All worked fine in my project before ...
2
votes
1answer
128 views
S#arp architecture equivalent in Java
What’s the equivalent of S#arp architecture(.net) in the java world.
A one stop package that encompasses all the best practices and well identified packages to start a web application project.
2
votes
2answers
546 views
Excluding some tables from Fluent Nhibernate schema Generation
I have some existing asp.net membership and roles tables in a legacy db and I am mapping them to new entities with Fluent Nhibernate.
I also generate the schema directly from Fluent Nhibernate and ...
2
votes
2answers
721 views
NHibernate Validation Localization with S#arp Architecture
I'm trying to localize error messages from NHibernate.Validator. From what I have read, the messages should automaticaly be localized if I set the CurrentCulture/CurrentUICultule ; wich I tried ...
2
votes
1answer
213 views
A Framework for MVC and NHibernate
I was currently looking at S#arp Architecture. It seems to be still too young to develop anything on top of it.
Is there any alternative to S#arp that include support for NHibernate (fluent a plus), ...