0
votes
0answers
2 views
Nhibernate on medium trust and godaddy hosting
Hello All
I have recently used Nhibernate on medium trust and host my website on godaddy hosting. I am shearing my experience to handle this problem on stackoverflow.
Problem:- Nhibernate used …
0
votes
1answer
23 views
Informix with NHibernate
Hi All,
I am trying to get Informix working with NHibernate on windows 7. I have a connection string that works fine with informix now, it is this,
…
0
votes
1answer
9 views
help building castle dynamic proxy
So I pulled the source from https://svn.castleproject.org/svn/castle/DynamicProxy/trunk/
Open it up in vs.net 2008
problems:
vs.net can't open the assembly.cs
assembly signing failed
What am I …
0
votes
0answers
3 views
Fluent NHibernate Automapper maps Enum to nvarchar(255)?
Why is a enums mapped as strings and not as int when using automapper in fluent nhibernate?
0
votes
0answers
11 views
Don’t need lazyloading, do I still need a proxy?
with nhibernate, I don't need any lazy-loading functionality.
Do I still need to add a proxy in my config?
<property name="proxyfactory.factory_class">????</property>
In the nhibernate …
0
votes
1answer
16 views
Where is the SQL outputting when setting show_sql in NHibernate?
Where is the SQL outputting when setting show_sql in NHibernate?
I have ReSharper as well.
1
vote
1answer
26 views
Why do I need nhibernate.dll referenced in my asp.net mvc project?
All my data logic is in another data layer project that I reference in my asp.net mvc project.
Now if I call:
CategoryDAO.GetById(1);
Everything works fine.
If I call:
CategoryDAO.GetBlah(1);
…
0
votes
2answers
25 views
Mocking an NHibernate ISession with Moq
Hello,
I am starting a new project with NHibernate, ASP.NET MVC 2.0 and StructureMap and using NUnit and Moq for testing. For each of my controllers I have a single public constructor into which an …
0
votes
2answers
11 views
If I use nhibernate to map tables 1:1 with no associates, do I still need dynamic proxy etc?
If I just want to keep things very simple, and just map my tables to POCO 1:1 with no collections on the entities
e.g. instead of doing :
class Order
class OrderItems
where you have:
Order o = …
0
votes
1answer
4 views
NHibernate extract DBTransaction from Session
Hi there,
I have an legacy db where some stored proc calculates the row ids for all the tables.
Now I want to overwrite the IIdentifierGenerator as hinted at this page …
1
vote
1answer
24 views
Linq.NHibernate problem with OR statement
NOTE: all the code is written Top of my head. It can contains some mistakes. Just get the overall point of this question)
Taking this class definition:
(reduced for simplicity)
public class …
0
votes
0answers
6 views
Fluent nHibernate, Sqlite and autoincremented column
Is autoincrementing column supported while using Fluent nHibernate and Sqlite?
I defined my class as
public class Vat
{
public virtual int Id { get; set; }
public virtual string Name { get; …
1
vote
1answer
26 views
Nhibernate date comparison
Here's the problem I'm trying to solve. I want to pass a date, then retrieve all itemorders that were picked on that date using NHibernate.
When I pass a orderPickDate to the method below, it never …
0
votes
0answers
25 views
Unit of work in multiple threads
I just implemented the async pattern in a wcf service, when i received the error message: You are not in a unit of work. I knew I had this message before but didn't know exactly what I did back then.
…
1
vote
2answers
30 views
NHibernate not throwing StaleObjectStateException when <Version> used and data changed in database
I have an entity mapped in NHibernate with optimistic concurrency control using a SQL timestamp column as the version number. The mapping is like the following:
<class name="Entity" …
