Top "Nhibernate" questions

NHibernate is an open source object-relational mapper (ORM) for the .NET framework.

The length of the string value exceeds the length configured in the mapping/parameter

I am trying to insert some very long text into a string prop - it worked perfectly fine with LinqToSql, …

nhibernate fluent-nhibernate
How to load application settings to NHibernate.Cfg.Configuration object?

How to load application settings to NHibernate.Cfg.Configuration object by using System.Configuration.ConfigurationManager from App.config?

nhibernate app-config configurationmanager
Could not create the driver from NHibernate.Driver.OracleDataClientDriver

Here's the code raising the exception: public static class NHibernateSessionManager { private static ISessionFactory sessionFactory = new Configuration().Configure().BuildSessionFactory(); public static …

c# oracle nhibernate connection driver
How to update database table schemas with NHibernate schema generation?

I'm trying to figure out how to use NHibernate configuration with mapping to update table schemas, rather than dropping and …

.net nhibernate orm fluent-nhibernate schema
How do add NOLOCK with nHibernate?

How do you add NOLOCK when using nhibernate? (criteria query)

nhibernate fluent-nhibernate criteria
What is the best way to improve performance of NHibernate?

I have an application that uses NHibernate as its ORM and sometimes it experiences performance issues due to how the …

.net performance nhibernate orm data-access-layer
Composite Key/Id Mapping with NHibernate

I have the following tables in my database: Announcements: - AnnouncementID (PK) - Title AnouncementsRead (composite PK on AnnouncementID and …

nhibernate fluent-nhibernate nhibernate-mapping composite-key composite-id
Fluent NHibernate Many to one mapping

I am new to Hibernate world. It may be a silly question, but I am not able to solve it. …

nhibernate nhibernate-mapping fluent
what does this error mean in nhibernate

Out of the blue, i am getting this error when doing a number of updates using nhibernate. Row was updated …

nhibernate fluent-nhibernate
When to use inverse=false on NHibernate / Hibernate OneToMany relationships?

I have been trying to get to grips with Hibernate's inverse attribute, and it seems to be just one of …

nhibernate hibernate collections one-to-many inverse