I have a few classes that read from very delicate tables, which is why I want them to be used by NHibernate as \"ReadOnly\". Establishing .ReadOnly() on each field map is really sloppy, and I\'m not s
Noob question. I have this situation where I have these objects: class Address { string Street; strin开发者_StackOverflow中文版g City;
I am using Fluent NHibernate\'s (1.0 RTM) automapping feature to create my oracle database schema. My iss开发者_运维知识库ue is that all the tables are using a single \"hibernate-sequence\", whereas I
I am very new to Fluent NHibernate and I have a problem that I cant find the answer to. I have a string column in my database table, containing a mathematical expression i.e: \"10 + 15 * 5\". On my e
I am using my fluent nhibernate mappings to generate my MS SQL Server database. I would like to be able to set a columns\' description as part o开发者_JAVA百科f this generation.No, it isn\'t possible
I have my Parent object, which contains an ICollection of Chi开发者_开发知识库ldren objects.The Children are lazy loaded and I do not need them in the context of my scenario.However, when I try to add
I\'ve been trying to specify a custom naming convention for my database table columns. So far, I have been able to setup a convention for the table\'s name, but not the actual columns. I\'ve seen a fe
I have a child object in the database that looks like this: CREATE TABLE Child ( ChildIduniqueidentifier not null,
Does anyone know how can we automatically map dynamic components using Fluent Automapping in NHibernate?
I have a mapping like this: HasMany(x => x.Orders).KeyColumn(\"CustomerID\"); Which is causing a constraint like this to be generated by schemaexport: