An architectural foundation for rapidly building maintainable web applications leveraging the ASP.NET MVC framework with NHibernate.

learn more… | top users | synonyms

0
votes
2answers
102 views

SQLite + windsor.castle version issue

I am trying to run some integration test and use this: public class ServiceLocatorInitializer { public static void Init() { IWindsorContainer container = new WindsorContainer(); ...
0
votes
2answers
74 views

Mapping integration testing NHibernate Mapping

The setup method here: NHibernate unit test uses the NHibernate.config: [SetUp] public virtual void SetUp() { var mappingAssemblies = RepositoryTestsHelper.GetMappingAssemblies(); ...
0
votes
1answer
56 views

inside out creation of database

I usually have no problem 'seeding' my database via NHibernate like this: ... string[] mappingAssemblies = new string[] { "Bla.Di.Domain" }; string configFile = "NHibernate.config"; ...
1
vote
1answer
70 views

Using MemCached with Fluent Nhibernate in S#arp Architercture

I'm using S#arp architecture to develop my web site. I've decided on using memcached as my caching system. I've successfuly managed to incorporate the memcached into my web site but I'm finding some ...
0
votes
2answers
133 views

Failure to get NHibernate session when switching to Windows Authentication

I'm trying to switch a working S#arp Architecture MVC application from an app pool with the Network Service identity to an app pool with a domain user identity. I ran aspnet_regiis on the user in the ...
0
votes
1answer
74 views

why is json.net only showing s#arp EntityWithTypedId class?

I'm using an older version of Sharp arch on a project and I'm trying to serialize using JSON.NET. JavascriptSerializer works, but I prefer JSON.NET for the preferences. Here's the problem. For some ...
0
votes
1answer
30 views

Upgrade path for S#arp Architecture 1.9.5 to 2.x?

I have a fairly large ecommerce site running on S#arp Arch 1.9.5. I just saw that the codebase is up to 2.0.4. First of all, nice one to everyone involved, I thought it was dead in the pan after ...
0
votes
1answer
134 views

Using SynchronizationContext with TrackingParticipant

I have a custom Tracking Participant: public class ErsTrackingParticipant : TrackingParticipant, IErsTrackingParticipant { private readonly INHibernateRepository<ErsTrackingRecord> ...
0
votes
0answers
33 views

How to suppress HasUniqueDomainSignature in Sharp Architecture framework?

Is there a way to suppress the HasUniqueDomainSignature validation if the domain signature property is null or empty? My goal is just to validate the property if and only if it has a value. If this ...
0
votes
1answer
116 views

s#arp repository constructor injection for wcf service/client

I understand there is a s#arp contrib collection of dlls but not much documentation (as far as I can see). I intend to use the s#arp architecture in a wcf service (console app hosted). Could someone ...
0
votes
1answer
204 views

Could not load file or assembly Not exact version

I'm using MigratorDotNet to do migrations. I give it a string to my Assembly My_Assembly which is built on Sharp Arch v2. Sharp Arch v2 is built on Fluent Nhibernate 1.3.0.727. My project is using ...
1
vote
1answer
176 views

SQL Azure Federation with S#arp Architecture

I’m using S#harp Architecture, has anyone found a way to access SQL Azure Federations with it? I am aware that the following command must be executed outside of the transaction since SQL Azure does ...
0
votes
0answers
84 views

Override not working for many to many self referencing: Repeated column error

I'm trying to generate the following entity using S#arp 2.0.4 public class DtaObject : Entity { public virtual string Name { get; set; } public virtual IList<DtaObject> ...
0
votes
1answer
177 views

How to turn off cascade deleting?

I have class with back reference: public class Employee : Entity { private string _Name; private string _Position; private Employee _SupervisorBackRef; private ...
1
vote
1answer
56 views

s#arp architecture + command and handler

This is my first time using S#arp Architecture 2.0 in a project. There is two folders in tasks project : Commands and CommandHandlers. I shearch about it and tried to undestand by the cookbook ...
1
vote
0answers
115 views

Spikes in response time for S#arpArchitecture site deployed on AppHarbor

The response times reported by Pingdom for my site deployed on AppHarbor are generally around half that for when it was deployed on Discount.ASP, however there are some spikes where the response time ...
0
votes
1answer
296 views

SharpArch.Data.NHibernate.Repository.SaveOrUpdate() don't save

I have this code for filling DB, but after finish, DB is still empty. Only number in hibernate_unique_key table is higher. The next thing which is interesting is, that during debugging instances has ...
0
votes
1answer
204 views

How can integrate SharpArchitecture and NHibernate.Search via Fluent.NHibernate.Search?

I'm trying to use NHibernate.Search on a SharpArchitecture app, with FluentNHibernate.Search mapping to maintain pure POCO domain objects. But i dont know how to setup the NHibernateSession: On my ...
0
votes
0answers
186 views

ASP.Net Mvc3 Edit Order Form Producing Error When Saving OrderItems

I'm pretty new to NHibernate and ASP.NET MVC so forgive me if I'm flat out doing this wrong. But essentially what I'm trying to do is create an edit form for an Order. I'm using C# and NHibernate ...
3
votes
1answer
2k views

Entry point was not found mv3 and sharp architecture

Hi i receive this error Sharp architecture 2.0 works on mvc 3,the error is Entry point was not found i have both mvc 3 and mvc 4 installed on my Pc,as i un-install mvc 4 projects Work ...
2
votes
1answer
87 views

produce (one) release executable

I have written a little console application that uses s#arp. I can create an executable using the configuration manager and selecting release. I understand that the dlls are needed and that there is ...
0
votes
1answer
89 views

master page link generation wrong - s#arp architecture

I am using s#arp architecture 2.0 with asp.net mvc 3.0. The razor code in a master page looks like this: @Html.ActionLink("Logout", "LogOff", "Users", new { style = "color:Blue;" }) For some ...
6
votes
4answers
219 views

String Parameter in AjaxOption null on Submit but showing in Response

In this piece of code @using (Ajax.BeginForm("MyAction", "MyRouteValues", new AjaxOptions { OnSuccess = "myJSFunction(" + Model.IntegerParameter + ", '" + Model.StringParameter + "')" })) I am ...
2
votes
0answers
196 views

Error: Unable to cast object of type 'NHibernate.Hql.Ast.HqlBitwiseAnd' to type 'NHibernate.Hql.Ast.HqlBooleanExpression'

I'm using s#arp architecture and NHibernate 3.1. I'd like to randomly select 10 rows from a table and I'm following the advice given in this page Linq Orderby random The solution involves doing XOR ...
1
vote
1answer
478 views

Doing a Join Query In ASP.NET MVC 3 using Sharp Lite Architecture

I'll use the mystore sharp lite architecture example. You can download the solution here: https://github.com/codai/Sharp-Lite So there are two entities in question. Products. And ProductCategories. ...
0
votes
2answers
222 views

MVC OnResultExecuting performance issues

I'm currently investigating performance issues on our web app (MVC2, S#arp Architecture, fluent nHibernate), using the MVC-mini-profiler which is great. I am using an attribute on actions or ...
0
votes
1answer
124 views

s#arp lite: Weird “HasUniqueDomainSignature” validation error message

I have 2 tables, Stack and User, and its many to one. [HasUniqueDomainSignature(ErrorMessage = "This stack already exists")] public class Stack : Entity { ...
0
votes
1answer
212 views

nhibernate 3.2, how to map foreign key

I am building my applicaiton using nhibernate 3.2 and s#arp lite framework. table "Stack" : Id: int (PK) Title: string PostBy: int (FK, User table Id) I am using automapping, by convention its ...
0
votes
3answers
226 views

Nhibernate, how to using sql server keyword as table name?

I am building my application using s#arp lite framework. One of my tables is called User. But User is a SQL Server 2008 keyword, so it gives me problems. I tried to modify the code to support tables ...
0
votes
2answers
371 views

Naming conventions to use 2 foreign keys to the same table in Fluent NHibernate using Sharp Lite Architecture

Here is my issue. I have a customer table and an address table. The customer table has two foreign keys to the address table. ShippingAddressFK and BillingAddressFK Normally I'd just have AddressFK ...
2
votes
0answers
245 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 ...
0
votes
2answers
401 views

NHibernate Search - Method 'Merge' not implemented

I've added NHibernate.Search to my otherwise routine S#arp Architecture 2.0 / MVC3 / .Net 4 project, followed directions pieced together from various tutorials, and it compiles fine, but I get a ...
0
votes
2answers
516 views

Sharp architecture, how and where do I implement queries?

I need help with implementing validation logic for users. I need to check whether the password entered by the user matches the passwordhash inside a SQL Server user table. The big question for me is, ...
0
votes
1answer
168 views

Sharp architecture Membership

Maybe this is a stupid question, but I dont know how to use Membership in sharp architecture template. I have seen how it is done in asp.net MVC (with AccountController, AccountView, and AccountModel ...
1
vote
1answer
252 views

Fluent NHibernate: do not generate any mapping for class during SchemaExport

I've got an application talking to two databases, and it runs fine, and my tests pass, except when it tries to export the current DB schema, it outputs everything for both DBs in one block, and when ...
1
vote
1answer
415 views

NHibernate - Cannot set the ConfigurationCache property after calling Init

In my S#arp Arch 2.0 project, I'm communicating with 2 databases. This runs fine locally with the ASP.Net Development Server (VS 2010) and passes unit tests requiring talking to either database. Next ...
0
votes
1answer
348 views

Using SharpArch Nhibernate with different types of SessionStorage

I have a server application where I have 3 scenarios in which I seem to need different kind of nhibernate sessions: Calls to the repository directly from the server itself (while bootstrapping) ...
3
votes
2answers
4k views

Convert from Oracle's RAW(16) to .NET's GUID

I'm having difficulties manually debugging an .NET application where the Guid values differ from .NET to Oracle. Where C# reads: 17D89D326C2142D69B989F5201288DBF Oracle reads: ...
2
votes
3answers
562 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 ...
0
votes
1answer
86 views

In S#arp Architecture's Entity class, how can GetHashCode get away with caching the hash code

S#arp Architecture's Entity base class currently implementats GetHashCode like this: public override int GetHashCode() { if (cachedHashcode.HasValue) return cachedHashcode.Value; if ...
0
votes
1answer
337 views

nhibernate exception - External component has thrown an exception

I have started to get this exception: External component has thrown an exception cause by this code: NHibernate.Cfg.Configuration config = NHibernateSession.Init( new ...
1
vote
1answer
1k views

sortable telerik grid + NHibernate, IQueryable and ASP.NET MVC

I am trying to get a telerik grid to work (paging works fine). My view code looks like this: @(Html.Telerik().Grid(Model) .Name("Grid") .Columns(columns => { columns.Bound(o => ...
1
vote
2answers
230 views

DataAnnotations CustomValidator with Generic Type

This is an MVC 3 project using S#arp Architecture. My domain has several objects that inherit NamedEntity which is an abstract class extending Entity and defining a string Name property. All of ...
1
vote
0answers
120 views

Sharp Architecture inheritance problem

my problem is with inheritance. I have a Actor class using System.Collections.Generic; using SharpArch.Core; using SharpArch.Core.DomainModel; namespace ProTeria.NET.Common.Domain { public ...
1
vote
2answers
1k views

Sharp architecture 2.0 unit testing

I am just trying to test some validation which involves the database. The setup of my test code looks something like this: [TestFixture] public class UserValidatorTester : RepositoryTestsBase { ...
1
vote
2answers
1k views

ServiceLocator not initialized in Tests project

When attempting to write a test related to my new Tasks (MVC3, S#arp 2.0), I get this error when I try to run the test: ...
0
votes
1answer
1k views

Dependencies waiting to be satisifed

I'm trying to abstract some simple tasks for some very simple objects. In my domain model, there are a number of different objects which basically serve as a way to tag (classify) a "Program." The ...
0
votes
1answer
818 views

icriteria problem

I am overriding a sharp architecture repository method like this: public class UserRepository : NHibernateRepository<User>, IUserRepository { public override User SaveOrUpdate(User entity) ...
1
vote
1answer
146 views

Domain Model - Business Validation / Errors

I am currently refactoring my project and one thing I'm not quite sure on is how to handle business validation errors. At the moment I am using the RulesException class from the xVal library, I ...
2
votes
0answers
438 views

NHibernate Initialization in Application_Start

I am using Asp.Net MVC and NHibernate. Some of my Global.asax file is shown below: public override void Init() { base.Init(); // The WebSessionStorage must be created during ...

1 2 3 4 5