Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

NHibernate Configuration in web.config - use existing connectionstring

I have my NHibernate configuration successfully set up in my web.config file. However, I am also using ASP.NET Membership which requires a connectionstring to be defined in the connectionStrings ...
5
votes
1answer
2k views

Is Proxy Factory necessary in NHibernate?

I've this configuration in the hibernate.cfg.xml: <?xml version="1.0" encoding="utf-8" ?> <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2"> <session-factory> ...
4
votes
1answer
1k views

How to set default access to field.camelcase-underscore using Fluent NHibernate?

would like to set this convention up globally if possible.
2
votes
2answers
336 views

NHibernate configuration to connect to Visual FoxPro 8.0?

Curious if anyone out there has ever connected NHibernate to Visual Foxpro 8.0? I'm looking to hook into a legacy data store, and would prefer to use NHibernate vs. having to hand-code all of the ...
1
vote
1answer
581 views

NHibernate: How to solve this “dialect” configuration problem?

Problem Encountered At runtime, I always get the following NHibernate.MappingException: "Could not compile the mapping document: GI.InventoryManager.CYB.Mappings.Part.hbm.xml" Yes, its build ...
1
vote
2answers
554 views

How can I use the NHibernate Configuration class with Fluent NHibernate

I want to be flexible even after deploying my code so I like to use the hibernate.cfg.xml file for configuring NHibernate. Now, I am planning to use Fluent NHibernate to do all my Class => Table ...
0
votes
1answer
55 views

Why does NHibernate say my filter isn't configured?

I'm trying to use a global filter in NHibernate, and as far as I can tell I'm doing exactly what all the tutorials do, but I'm getting an exception. My .hbm.xml file contains the following: ... ...
0
votes
1answer
76 views

Triggers in NHibernate

I'd like to know if is there something like a Trigger (of databases) in NHibernate that I can use per entity ? I'd like to make a history of each record, and with triggers I can compare the old ...