Tagged Questions
The convention-based Auto Mapping feature of Fluent NHibernate. Not to be confused with AutoMapper, the convention-based object-to-object mapper.
17
votes
4answers
3k views
Override for fluent NHibernate for long text strings nvarchar(MAX) not nvarchar(255)
When ever you set a string value in fluent NHibernate it alwasy sets the DB vales to Nvarchar(255), I need to store quite a lot of long string which are based on user inputs and 255 is impractical.
...
15
votes
5answers
6k views
Cascade Saves with Fluent NHibernate AutoMapping
How do I "turn on" cascading saves using AutoMap Persistence Model with Fluent NHibernate?
As in:
I Save the Person and the Arm should also be saved. Currently I get
"object references an ...
10
votes
1answer
286 views
Fluent NHibernate JoinedSubClass is obsolete
I wonder about something. I'm sitting here with a solution there I have 1 superclass that has 2 subclasses and I'm currently mapping this using JoinedSubClass, but I get that this method is obsolete, ...
8
votes
3answers
2k views
Fluent NHIbernate automapping of List<string>?
Fluent NHibernate doesnt like this, throwing an error '{"Association references unmapped class: System.String"}'. Ok fine, I can see why this would cause a problem - but whats the best solution?
I ...
8
votes
10answers
3k views
C# - IDataReader to Object mapping using generics
How can I map a DataReder object into a class object by using generics?
For example I need to do the following:
public class Mapper<T>
{
public static List<T> ...
7
votes
4answers
2k views
Fluent Nhibernate Automap convention for not-null field
Could some one help, how would I instruct automap to have not-null for
a column?
public class Paper : Entity
{
public Paper() { }
[DomainSignature]
[NotNull, NotEmpty]
...
6
votes
3answers
2k views
Is there a Fluent NHibernate Automapping sample project that “just works”?
I just started looking at NHibernate this week, and would love to use the Automapping approach on my current project.
I'm working with Fluent NHibernate 1.0.0.594, which I downloaded a few days ago.
...
5
votes
2answers
902 views
NHibernate unable to cast PersistentGenericSet to ISet
I've this error:
Unable to cast object of type
'NHibernate.Collection.Generic.PersistentGenericSet`1[IocWinFormTestEntities.People]'
to type ...
5
votes
4answers
2k views
Generate C# entities from existing DB and Fluent NHibernate auto mapping
I'm working with an existing database that uses some really ugly conventions. I'd like to use NHibernate, and I think I can fix all these ugly DB conventions using Fluent NHibernate's auto mapping ...
4
votes
5answers
324 views
Complex relationship between tables in NHibernate
I'm writing a Fluent NHibernate mapping for a legacy Oracle database. The challenge is that the tables have composite primary keys. If I were at total freedom, I would redesign the relationships and ...
4
votes
1answer
588 views
Fluent nHibernate Automapping not creating Plural table name
I have two tables, Locations and Facilities
They map to two classes,
public Location : Entity
{
//properties
}
public Facility : Entity
{
public virtual Location Location { get; set; }
}
...
4
votes
4answers
3k views
Eager Loading Using Fluent NHibernate/Nhibernate & Automapping
I have a requirement to load a complex object called Node...well its not that complex...it looks like follows:-
A Node has a reference to EntityType which has a one to many with Property which in ...
4
votes
2answers
209 views
nHibernate mapping for entity to multiple different parent entities (eg Addres -> Firm, Addres -> Client)
Can someone help me with the best way to map the following situation in fluent nHibernate? The Address class is used in both Client and Company. How can I store it most efficient in SQL? And what ...
4
votes
1answer
458 views
What is the best way to provide an AutoMappingOverride for an interface in fluentnhibernate automapper
In my quest for a version-wide database filter for an application, I have written the following code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ...
4
votes
2answers
1k views
Fluent NHibernate enforce Not Nullable on Foreign Key Reference
Just getting my feet wet with some Fluent NHibernate AutoMap conventions, and ran into something I couldn't figure out. I assume I'm just not looking in the right place...
Basically trying to enforce ...
4
votes
0answers
151 views
automapping: IgnoreProperty on Component?
I am automapping measurement classes (that implement interface IMeasurement) as components.
This works fine, but I have some attributes in the components I would like to ignore.
Apparently I cannot ...
3
votes
1answer
380 views
Fluent nhibernate automappings ignore inherited property
I'm using fluent nhibernate to map following model:
public abstract class BasePermission : Entity
{
public abstract string Name { get; }
}
public class ApproveMembershipPermission : ...
3
votes
1answer
179 views
How to automap a collection of components with Fluent NHibernate?
All of my entities and value objects implement marker interfaces IEntity and IValueObject. I have set them up to be treated as components like so:
public override bool IsComponent(Type type)
{
...
3
votes
1answer
681 views
Castle Windsor, Fluent Nhibernate, and Automapping Isession closed problem
I'm new to the whole castle Windsor, Nhibernate, Fluent and Automapping stack so excuse my ignorance here. I didn't want to post another question on this as it seems there are already a huge number of ...
3
votes
1answer
152 views
C# - Nhibernate question
I am particularly confused by the following test case:
public void TestMapping()
{
var autoPersistenceModel = AutoMap.AssemblyOf<RepositoryEntity>().Where(
x => ...
3
votes
1answer
4k views
How to solve “Batch update returned unexpected row count from update; actual row count: 0; expected: 1” problem?
Getting this everytime I attempt to CREATE a particular entity ... just want to know how I should go about figuring out the cause.
I'm using Fluent NHibernate automapping so perhaps I haven't set a ...
3
votes
0answers
144 views
Fluent NHibernate and automapping generic types
I'm automapping most of my model, but have a problem with generics.
I've got ValueContainer, and I make it abstract so that it
doesn't throw an exception during automapping. Next, I have to create
...
3
votes
1answer
368 views
Fluent NHibernate: Mixing Automapping and manual mapping
If using Fluent NHibernate, is it possible to automap most classes, but specify that a couple of particular classes should be mapped using the regular fluent API rather than being automapped? And if ...
3
votes
1answer
461 views
Need help with a 'No persister for:' exception with Fluent Nhibernate Automapping
I'm having some problems with applying NHibernate Fluent Automapping. It worked great in a test project. But now..
Test method [PROJECTNAME].SubscriptionTest.SubscriptionConstructorTest threw ...
3
votes
3answers
317 views
Using fluent-nhibernate is it possible to automap a Value Object(s) inside an Entity?
I'm using Sharp Architecture and have a number of situations where Value Objects are used in an Entity. Here is an obvious simple example:
public class Person : Entity
{
protected Person(){}
...
3
votes
1answer
571 views
Help making Fluent NHibernate create an oracle sequence for each table
I am using Fluent NHibernate's (1.0 RTM) automapping feature to create my oracle database schema. My issue is that all the tables are using a single "hibernate-sequence", whereas I would prefer (and ...
3
votes
3answers
1k views
Automapping doesn't have an Id mapped
My Entity Class:
public class Building
{
///
/// internal Id
///
public virtual long Id { get; set; }
..............
}
My Mapping:
var model = ...
3
votes
2answers
327 views
Can I Automap a tree hierarchy with Fluent NHibernate?
Is it possible to auto map a simple nested object structure?
Something like this:
public class Employee : Entity
{
public Employee() {
this.Manages = new List<Employee>();
}
...
3
votes
1answer
765 views
fluent nhibernate automap version column
Current code in my convention:
public void Apply(FluentNHibernate.Conventions.Instances.IVersionInstance instance)
{
instance.Column("RowVersion");
instance.Not.Nullable();
...
3
votes
4answers
1k views
Fluent NHibernate (with automapping) not saving join table values in many-to-many
I am not exactly an NHibernate expert, so this may be a lack of understanding in that department. I have two simple entities with a many-to-many relationship
public class Category
{
public ...
3
votes
1answer
536 views
How can I use Fluent NHibernate Automapping with multiple Lists of the same type in an Entity?
It appears that NHibernate cannot automap more than one IList of a given type in an entity.
Consider the following two entities (based on the Examples.FirstProject sample code that is included with ...
3
votes
3answers
1k views
Fluent NHibernate. Auto Mapping and Conventions
Im new to NHibernate, the configuration aspect of it has always seemed overly onerous to me. Yesterday, I came across the Auto Mapping features of Fluent NHibernate and was suitably impressed.
To ...
3
votes
4answers
1k views
Is it possible to use private field conventions for Fluent NHibernate Automapping?
How can I map to a private field with fluent NHibernate AutoPersistenceModel?
public class A
{
private List<B> myField;
public A()
{
myField = new ...
2
votes
0answers
23 views
Cache convention and overriding
I've made a convention that allow caching of all entites by default.
But for some entites I want to remove caching. I thought about using
AutoMappingOverriding but I don't know if it is possible to ...
2
votes
3answers
91 views
Jquery post to Action with Dictionary Parameter
I am feeling dejavu, but I cannot find the answer to this:
I have an array of objects that needs to look like this when inspecting a jQ $.post call:
limiter[0].Key
limiter[0].Value
so that it is ...
2
votes
2answers
201 views
FluentNHibernate: Automapping OneToMany relation using attribute and convention
This is very similar to my previous question: FluentNHibernate: How to translate HasMany(x => x.Addresses).KeyColumn("PersonId") into automapping
Say I have these models:
public class ...
2
votes
2answers
290 views
Multi-column unique constraint FluentNHibernate automap via convention
Does FluentNHibernate's automap support creating a multi-column unique constraint via convention?
I can easily create a single column unique constraint:
public void Apply(IPropertyInstance instance)
...
2
votes
1answer
83 views
NHibernate Automapping problem
Recently I came across a strange behavior in Automapping of Fluent NHibernate. I have the following class structure (some properties cut off for the sake of brewity).
public class UserGroup
{
...
2
votes
1answer
96 views
How do I turn off Identifiergeneration in fluent nhibernate when using automapping
I use NHibernate 3.0 with fluent configuration. I automap my persistent model like this:
AutoMap
.AssemblyOf<BaseEntity>()
.Where(type => type.Namespace != null && ...
2
votes
0answers
150 views
Fluent NHibernate - Flatten multiple rows into a single entity
I have a database table that I cannot change which contains data like:
FooTable
Id | EntityAUniqueId | EntityBUniqueId | EntityCUniqueId
...
2
votes
1answer
401 views
ValueInjecter - recursive mapping
I'm pretty new to auto-mapping, and even newer to ValueInjecter. I'm sorry if this is an easy question, but I can't seem to find the answer anywhere.
How would I do a recursive mapping? For ...
2
votes
2answers
323 views
Fluent NHibernate not auto-mapping one-to-many property in base class
Let's say I have an abstract base class defined as follows:
public abstract class CompanyBase : EntityBase<CompanyBase>
{
public virtual string Name { get; set; }
public virtual ...
2
votes
3answers
735 views
Value Injecter : Dto to Domain Model (NHibernate)
I am using ValueInjecter to map properties from a Domain model to a DTO served up via a Service Layer. The service in question also accepts updates... so an updated DTO is passed in and this is then ...
2
votes
1answer
119 views
how to tell flunet-nhibernate to use the ID from a base class (which is abstract and ignored in the mapping)
i have an abstract class
public abstract class Document
{
public int DocumentID {get; set;}
}
and derived class
public class DoctorDocument : Document{
public string DoctorName {get;set;}
}
...
2
votes
1answer
456 views
Fluent nhibernate automapping collection
I am trying to map my collections with FNHib automapping. The problems that I want to solve are:
1) I want all my collections in the project to be mapped via private field. How can I say that ...
2
votes
2answers
977 views
Fluent NHibernate Mapping - Composite Key
I'm trying to map the following tables/entities in FNH and seem to be getting nowhere fast!
**Tables**
Contacts
ID (PK - int - generated)
...
PhoneTypes
ID (PK - varchar - assigned) ...
2
votes
1answer
338 views
FluentNHibernate Overrides: UseOverridesFromAssemblyOf non-generic version
I have a repository class that inherits from a generic implementation:
public namespace RepositoryImplementation {
public class PersonRepository : ...
2
votes
3answers
2k views
Fluent NHibernate and computed properties
I'm using Fluent NHibernate, and auto-mapping the classes.
I have a computed property in a class along the lines of
public virtual DateTime? LastActionTimeStamp
{
get {
return ...
2
votes
3answers
1k views
How do I map a dictionary using Fluent NHibernate automapping?
I have an entity like so:
public class Land
{
public virtual IDictionary<string, int> Damages { get; set; }
// and other properties
}
Every time I try to use automapping with the ...
2
votes
1answer
343 views
S#arp Architecture many-to-many mapping overrides not working
I have tried pretty much everything to get M:M mappings working in S#arp Architecture. Unfortunately the Northwind example project does not have a M:M override.
All worked fine in my project before ...