Most voted "fluent-nhibernate" questions
Framework to assist in secure and automated mapping, without convention-based XML for Nhibernate
Learn more…55 questions
Sort by count of
-
0
votes0
answers27
viewsHow to create a Not Null field with an index associated with Nhibernate Fluent
I have a problem creating a field when using Fluent Nhibernate with SQL Server (C#): I have this entity with some fields with primitive types and others are complex fields: public class…
-
0
votes0
answers13
viewsError dehydrating Property value for Entities.Mesa.Mesastatus
I mapped the classes Mesa and Mesastatus with Fluent Nhibernate, according to the code below: CLASS public class Mesa { public virtual int MesaId { get; set; } public virtual int Numero { get; set;…
-
-1
votes1
answer751
viewsCould not create the driver from Nhibernate.Driver.Oracledataclientdriver, Nhibernate, Version=4.0.0.4000, Culture=neutral,
I am working on an application with NHibernate and Fluent Nhibernate. I’m having trouble with my settings App.config. I don’t know exactly what’s wrong with my settings. I’m getting this Exception:…
-
-1
votes1
answer77
viewsSystem.Nullreferenceexception was unhandled by user code
When compiling my application I received this error from the image below, would anyone know how I could solve?
-
-1
votes1
answer21
viewsGet all classes that implement Classmapping<>
List<Type> entityMappings = new List<Type>(); IEnumerable<Type> allTypesInThisAssembly = Assembly.GetExecutingAssembly().GetTypes(); foreach (Type type in allTypesInThisAssembly) {…