The convention-based Auto Mapping feature of Fluent NHibernate. Not to be confused with AutoMapper, the convention-based object-to-object mapper.
0
votes
0answers
12 views
How can I stop Fluent NHibernate automapping from creating foreign keys across the database?
I am using latest version of Fluent NHibernate automapping. Is there any convention or property I can set to stop creating the foreign key constraints across all the tables? I have nearly 200 classes, ...
0
votes
0answers
17 views
FluentNHibernate automapping ManyToMany
I'm trying to map a many-to-many relation, but the mapping doesn't work (list property stays null and items are not stored.
I use the following tables:
User(Id, Name, Password,...)
Role(Id, Name)
...
1
vote
1answer
28 views
QueryableExtensions for ValueInjecter
Does anything like QueryableExtensions for Automapper exist for ValueInjecter?
For those unfamiliar with this functionality it allows for the automatic projection of properties to be performed for ...
1
vote
0answers
13 views
IIdConvention “overrides” IAutoMapping
I'm using a specific convention for my Id tables and I'd like to override the way the ID of a specific entity is mapped. In this scenario, most of the entities should a key on the form Class+ID (ex.: ...
0
votes
0answers
45 views
Optimistic-lock configuration exception
I have this automapping configuration:
private static AutoPersistenceModel entityAutoMappings =
AutoMap.AssemblyOf<A>().Where(type => type.IsSubclassOf(typeof(Entity)))
...
0
votes
2answers
33 views
NHibernate: Overriding automapping on a one to many relationship
I've just started to play around with Fluent NHibernate and would like some help / pointers on how I got about mapping this. Here's the domain model I'm working with:
Class User: Your standard user ...
5
votes
1answer
125 views
Automapping inheritance with Fluent nhibernate
I have this situation:
public namespace ANamespace
{
public abstract class ABase:IABase
{
//properties
}
public abstract class A : ABase
{
//properties
}
...
1
vote
1answer
33 views
NHibernate HasManyToMany automapping not populating list on load
I've got a many-to-many relationship set up via AutoMapping. Now, the save and updates work fine as expected, however the DiscountGroups are not being loaded in DiscountDay when I get the entities ...
0
votes
0answers
53 views
automap dynamic types build by typebuilder with fluent nhibernate
I was wondering if this constellation of methods and tools would work or not. My plan is to define and create instances of classes at runtime per typebuilder and then map these to fluent nhibernate ...
0
votes
0answers
13 views
Custom ForeignKeyConvention has unexpected nulls
I have a custom ForeignKeyConvention like so:
public class ForeignKeyConvention : FluentNHibernate.Conventions.ForeignKeyConvention
{
protected override string GetKeyName(FluentNHibernate.Member ...
0
votes
0answers
194 views
Fluent NHibernate automapping a HasMany relationship always leaves child object foreign key column NULL
I'm having some trouble with a HasMany relationship in regards Fluent NHibernate automapping. I've set up the relationship in a manner that I thought is correct, and the tables appear to be generated ...
0
votes
0answers
88 views
Fluent NHibernate automapping: subclass fk/pk name convention
I've been trying to find the convention needed to customize the naming convention for the PK/FK column of a joined subclass table in Fluent NHibernate. I have tried the following conventions:
...
0
votes
1answer
24 views
how to specify a composite key, in which one key is an identifier and another is not, using fluent nhibernate
I'm trying to specify a composite key, in which one key is an identifier and another is not, using fluent nhibernate. Is it possible in fluent? If yes, what I'm doing wrong in below mapping?
public ...
0
votes
1answer
81 views
NHibernate missing SqlParameter for overriden property
I'm trying to implement table-per-hierarchy approach, using FluentNHibernate AutoMapping.
I have a base class and three child classes. The third child class overrides a couple of properties of the ...
1
vote
1answer
77 views
FluentNHibernate AutoMapping : ClassConvention Does not work
I have a model library that I want to automatically build its NHibernate mappings using FluentNhibernate.
There's a convention that I'd like to add to this model and that is each table name ends with ...
1
vote
1answer
57 views
NHibnernate SQL Lite in memory unit testing doesn't work the same as a physical db
I am in the process of building a "get to know NHibernate project).
My unit tests (nunit) provide the repository layer the same configuration as the normal mvc site but using ...
0
votes
0answers
155 views
How is fluent nhibernate automapping maintaining the foreign keys in my database?
I have the following classes:
public class Report : Entity
{
// Attributes
public virtual string Name { get; set; }
// Relationships
public virtual ReportTemplate Template { get; ...
0
votes
2answers
559 views
Fluent NHibernate one-to-many disable foreign key constraint
I have this problem where I have a one-to-many relationship and I have to be able to delete the parent entity without it's children being deleted, nor their foreign key column set to NULL. But ...
0
votes
1answer
179 views
FluentNHibernate: Id Column Name Ignored
FluentNHibernate: 1.3.0.733
NHibernate: 3.3.1.4000
I'm trying to set the column name of the Id column, but it seems to be ignored.
Edit:
Found solution. Property redeclaration (new-modifier) was ...
0
votes
0answers
44 views
How to create child object before parent update?
public class Project: Entity
{
private IList _projectCustomer;
public virtual string Code { get; set; }
public virtual string Name { get; set; }
public virtual ...
0
votes
1answer
244 views
Fluent NHibernate.Automapping change data type in Database
I'm new to FluentNHibernate. I am working with AutoMapping. Let's say, I have a database which is generated by NHibernate. There's a table, named Document with 2 columns
Id: int
Description: ...
0
votes
1answer
157 views
Change mapping rules for view model AutoMapper
I have a model
public class Product : BaseEntity
{
private string _name;
public string Name
{
get { return _name; }
private set{_name = value;}
...
0
votes
1answer
186 views
Override Id column's auto-increment initial value with Fluent nHibernate AutoMapping
I'm using Fluent nHibernate AutoMapping for a project and would like to change the initial Id value for one table in my schema from 1 to say 1000 (all other tables I would like to remain with the ...
0
votes
1answer
405 views
How do I use Fluent NHibernate ReferencesAny mapping?
I've read a lot about Fluent NHibernate's ReferencesAny but I haven't seen a complete example. I think I understand most of it, but there is one part I don't get. In the class mapping ReferencesAny(x ...
0
votes
1answer
158 views
Ignore Property in FluentNHibernate AutoMapping
I have for each Entity a BaseClass and a concrete class.
For Example:
ContactBase
Contact
Contact inherits ContactBase.
In Contact, I can override properties of ContactBase. The Problem is now, ...
0
votes
1answer
106 views
Avoid not necessary insert subclass when insert with Entity Framework
I have this objects :
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public Address Address { get; set; }
}
public class Address
{
...
0
votes
1answer
263 views
Automapping DB Tables to Hibernate classes
I have my friend's EJB project that uses hibernate. I am doing my Java project with help of that project. Mine is not an EJB, it is an desktop applicaiton. I have a small hibernate class mapping ...
0
votes
1answer
295 views
Fluent NHibernate Many to many not saving
I'm having a problem trying to get a many to many relationship to save the join record in NHibernate using Automapper in Fluent NHibernate.
There are quite a few other posts about this on S.O but so ...
2
votes
1answer
389 views
Fluent NHibernate automapping class conventions aren't being applied to entire class hierarchy
I'm trying to automap a simple inheritance hierarchy with Fluent Nhibernate, and I need to have a slightly different name for each table than its class (underscores instead of Pascal case). This ...
0
votes
1answer
674 views
Dynamically property .Not.Insert().Not.Update() Mapping Fluent NHibernate
im using the Fluent NHibernate together with the automapping functionality!
I'm currently using the follwing mapping statement to prevent autogenerated column values to be updated / insert
...
1
vote
1answer
519 views
Not getting NHibernate Cascade Delete Orphan working with Automapping
Having tried several solutions to get NHibernate to delete orphan records.
Given the following structure:
public class Parent {
public virtual ICollection<Domain> Domains {get;set;}
}
...
0
votes
3answers
404 views
Property which should be a readonly db-field (Fluent NHibernate Automapping)
Im using the Fluent NHibernate together with the automapping functionality. Now im lookin' for something like a configuration, setting, custom attribute - whatever - to declare an entity property as ...
0
votes
2answers
179 views
AutoMapper configuration of List
I have an entity and a corresponding DTO
public class PersonEntity {
public int personId;
public List<Contact> contacts;
}
public class PersonDto {
public int personId;
public ...
0
votes
2answers
912 views
FluentNhibernate Custom Primary key Automapping - (dis)allow nulls
If this is the way for hard-coded mapping for nullable and not nullable database fields
// nullable
Map(x => x.FirstName)
.Nullable();
// not nullable
Map(x => x.FirstName)
...
3
votes
2answers
336 views
fluent nhibernate discriminator from related table
I've the following 3 table's with example values of
Vehicles ( id = 1, type_id = 20 , ... )
Vehicle_Types ( vt_id = 20, class_id = 160, ... )
Vehicle_Classes ( vcls_id = 160, name = "Concrete1" )
...
0
votes
1answer
364 views
FLuentNhibernate + Automapping
Anyone that can helt me with FluentNhibernate and automapping?
Check PotentialReasons collection, and InnerException for more detail. ----> FluentNHibernate.Cfg.FluentConfigurationException : An ...
2
votes
1answer
355 views
Fluent NHibernate automapping a private/protected property as the Id
I want to hide the primary key Id property from consumers of my entity classes:
public class A
{
protected virtual int Id { get; set; }
public virtual string Name { get; set; }
... etc ...
1
vote
1answer
842 views
Many to many relationship using Fluent Nhibernate Automapping
We are facing problem applying many-to-many relationship using fluent nhibernate automapping.
The simplified form of domain model are as follows:
public class Group
{
private readonly ...
0
votes
2answers
413 views
Fluent NHibernate ShouldMap does not detect my custom attribute
I have been spending a couple of days now to get to know the Fluent NHibernate automapping working model. It is quite nice, but I keep detecting new details missing from my schemas. Now I want to add ...
0
votes
2answers
279 views
Fluent NHibernate: the entity '(method name)' doesn't have an Id mapped.
This is my first time trying Fluent NHibernate and Auto mapping. Unfortunately I have run into an issue that I cannot get past. I'm getting an error saying that a method on one of my classes cannot be ...
1
vote
1answer
216 views
Why is a custom resolver needed here (AutoMapper)?
Given the following entity model:
public class Location
{
public int Id { get; set; }
public Coordinates Center { get; set; }
}
public class Coordinates
{
public double? Latitude { get; ...
1
vote
0answers
132 views
Mapping tool (like Automapper) for Matlab
I've been enjoying the power of working with .NET types in Matlab using the Matlab .NET Interface.
I'm currently attempting a set of Matlab wrappers to expose a .NET API (wrapping to make the API ...
0
votes
1answer
73 views
How to automap List<string> to single field with fluentnhibernate convention
I want to implement the solution here with automapping using a convention. How do I do this? Fluent NHibernate automap list of strings with nvarchar(max)
I think I will use an attribute on the ...
0
votes
1answer
296 views
Automapper AssertConfigurationIsValid stricter control
I just discovered I get no errors if there is no mapping to a property if the source has a property with the same name. We are trying to make it as strict as possible and get errors when there are ...
1
vote
0answers
217 views
Fluent Nhibernate One to One Relationship AutoMapping
Is it possible for tables which have one to one relationship to be automapped by FluentNhibernate? It seems that Auto Mapping only works for one to many and many to many relationships.
Can you give ...
2
votes
1answer
207 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 ...
1
vote
1answer
425 views
Defining unique column in Fluent NHibernate Automap Override
I'm trying to specify a unique column for an entity, using the Fluent NHibernate Automapper Override. For my test class of CodeType, I'd like to make the Type property unique. The goal would be for a ...
2
votes
1answer
218 views
Add (unique)index to properties of Fluent Nhibernate auto mapped classes
We are using Fluent NHibernate with automapping for our objects.
Something like:
AutoPersistenceModel autoMap =
AutoMap
.Assemblies(mappingConfig, assembliesToMap.ToArray())
...
0
votes
1answer
140 views
DB specific conventions in Fluent NHibernate
I have a set of Fluent NHibernate conventions most of which are database independent. However, there are a couple which are DBMS dependent such one for string properties:
Public Sub Apply(ByVal ...
0
votes
2answers
1k views
Setting up Fluent NHibernate one-to-many with cascading deletes using the automapper
Extreme newbie question. I have my database (SQL Server) set up to cascade deletes for my relationships so if you delete a parent entity all the children are deleted as well (ON DELETE CASCADE). I ...