Tagged Questions
1
vote
1answer
14 views
Simple mapping of inner object without identity
Who can help me map this seemingly simple object hierarchy using nHibernate?
[Document]
identity-field
[DocumentHeader]
field1
field2
[Recipients]
The point to note here is that ...
2
votes
2answers
100 views
Fluent NHibernate table-per-inheritance (TPH) mapping for multi class in the hierarchy
Hello everyone,
I'm struggling with one Fluent NHibernate issue.
I have following template of class structure in the my solution:
class OneClass
{
public virtual string OneProp {get; set;}
}
...
0
votes
1answer
54 views
Fluent NHibernate map GUID type property NOT Identity
I have a guid property in my entity and i want to map it to guid field in MS SQL.
public class SomeEntity
{
public virtual int Id { get; set; }
public virtual Guid GUID { get; ...
0
votes
2answers
143 views
Fluent NHibernate Many to Many with extra column does not insert
I'm struggling with fluent nhibernate from Fluent Nhibernate Many-to-Many mapping with extra column
I've copied the mappings and written the smallest program I can... but it wont save... Would ...
1
vote
2answers
93 views
NHibernate - Add Comment Property to Entities (Store with Join)
I have a system where I need to be able to add a Comment field onto Customer and Location models but I cannot touch the schema of the existing tables. However, I can add a Comments table. I have ...
0
votes
0answers
24 views
DDL script into OR modell
Is there a tool which convert a DDL script into an OR model?
I know about some commercial reverse engineering software doing this from a database.
But what i am looking for is more like an open ...
1
vote
1answer
151 views
NHibernate.MappingException: No persister
I've got a problem doing updates with a stateless session and I'm
wondering if anyone has seen something like this. (NHibernate 3.1).
I'm basically doing the following:
SomeEntity e = ...
0
votes
0answers
24 views
Eager loading multiple one to one relation
I've following relation defined in fluent nhibernate
public class Size
{
public int Id { get; set; }
public int Value { get; set; }
}
public class Product
{
public int Id { get; set; }
...
1
vote
1answer
59 views
Count Session in Nhibernate
I am using Fluent NHibernate. I want to count number of session gets created and present in application. Is there any way to count that ?
Please share your view and suggestion.
0
votes
1answer
102 views
Fluent NHibernate list<T> inside class
I am trying to get a List<User> which in turn contains a List<Article> for every User, however when querying i get the List<User> and every User (the only User) has a ...
1
vote
1answer
162 views
mysql with nhibernate too many connections
i'm runnning nhibernate on .net framework, during testing I receive this error
ERROR 91 0 0 0 An exception occurred: cannot open connection
NHibernate.ADOException: cannot open connection ---> ...
1
vote
1answer
66 views
how to implement navigational properties in nhibernate
I have a scenario with a domain model used with NHibernate which looks kind of as below.
public class BaseClass
{
public virtual int Id { get; set; }
public virtual string SomeProperty { get; ...
2
votes
1answer
218 views
NHibernate Has-Many Collection With Cascading Deletes is Failing
Objective:
Create a parent-child relationship such that modifications to the parent's list of children will propogate to all of the children and have NHibernate do the heavy lifting.
The parent-child ...
0
votes
1answer
195 views
Specifying the Primary Key when using Fluent NHibernate and AsList()
I have a scenario in which a User entity has a list of country ids, held as IList.
public virtual IList<int> TradeCountries { get; protected set; }
Currently this is mapped as
HasMany(x ...
2
votes
1answer
114 views
Testing NHibernate Map
What's the best way to test your NHibernate Mapping classes?
Let's assume I want to test the following map:
public QuoteMap()
{
this.Table("QUOTE");
this.Id(x => ...
1
vote
1answer
68 views
Mapping a collection of localization entities used by many entities with Fluent NHibernate
I am working with a legacy database and I am trying to map some kind of localization table with Fluent NHibernate.
The table looks like this:
DataName
[PK] TableName
[PK] FieldName
[PK] Id
[PK] ...
1
vote
0answers
119 views
Fluent NHibernate HasMany - Foreign key conflict
I've got 2 classes mapped like this:
public class LicenseClassMap : ClassMap<License>
{
public LicenseClassMap()
{
Id(x => x.ID)
.GeneratedBy.Guid();
...
2
votes
0answers
136 views
Exception “instance was not in a valid state”
This is a sample code. where I am doing some test
Get entities
Delete a entity
Rollback transaction.
Change entity
Refresh entity
Get entities
I am getting this exception while excuting below ...
0
votes
1answer
203 views
NHibernate LinqProvider / IQueryable: Is FirstOrDefault() supported inside a Where clause?
Given two classes that resemble
public class Blog
{
public virtual int BlogId { get; set; }
public virtual IList<Comment> Comments { get; set; }
}
public class Comment
{
public ...
0
votes
1answer
90 views
NHibernate: (Fluent) Mapping / Querying based upon a Getter that accesses an already mapped collection property
I don't know how to phrase this properly. I'm working with a pre-existing domain, where certain entities can contain children that are versioned. The children are responsible for their own version ...
2
votes
3answers
59 views
Delete in HasManyToMany
I have three table -
1. Anomaly
2. Markup
3. Anomaly_Markup
Mapping -
public AnomalyMap()
{
Table("anomaly");
Id(x => x.Id).Column("ID").CustomType("decimal");
...
0
votes
1answer
137 views
Fluent NHibernate mapping using component
I have just started working on a project using Fluent NHibernate.
What is the correct way to map the following classes using Fluent NHibernate?
public class DurationUnit
{
public virtual int Id ...
0
votes
1answer
305 views
Fluent Mapping and NHibernate Xml Configuration
I have an application using NHibernate and I'm using Fluent NHibernate to mapping my entities. It works fine, but, I want to create the SessionFactory using the native way of NHibernate because my ...
1
vote
1answer
152 views
Fluent nhibernate mapping nested properties “cannot find getter”
Ok, this may be a double-question. I have a class User, which contains a property Location of type UserLocation. At first, I was mapping both the User class and the UserLocation class and storing them ...
0
votes
1answer
305 views
Remote Database response very slow of asp.net application using NHIbernate
I may be missed something to track in the bellow code, but it is slowing down remote database server response time. Application is working fine while tried with Database from the same machine where ...
0
votes
1answer
79 views
What's the exact meaning of Persistence model in NHibernate?
I'm new in the work with the Orm's and This question occurred for me that what the Persistence Model in NHibernate and what the difference between transient object and persistent object.
0
votes
1answer
164 views
Fluent NHibernate NaturalId missing?
I have a very simple Mapping I'm trying to do. I'm following the NHibernate 3.0 Cookbook and I've come across an issue with the NaturalId() method missing from FluentNHibernate.dll. The book had me ...
5
votes
5answers
1k views
NHibernate vs. EF 4.1+ [closed]
I am trying to decide the pros and cons of the 2 ORM primarily in this area.
Compatibility with Sql Server 2008 R2 & 2012.
This is very important as we simply don't have the resources to debug ...
2
votes
3answers
327 views
Fluent NHibernate M2M Mapping ([One] to [Many - Many] to [One])
i have searched the "whole" internetz for this question, and its a damn hard one to search for as its rather complicated. Try searching for "Fluent NHibernate Many to Many with a bridge table with ...
0
votes
1answer
167 views
FluentNHibernate - How to map without any Identity field
I am using FluentNHibernate. Can anybody plz tell me how to retrieve value from database where no fields is Unique. There is not Identity column to map.
0
votes
1answer
96 views
Fluent Nhibernate ImportType
I've literally searched high and low, and can't seem to find a recent solution for this.
I'm trying to implement a un-mapped class which is a DTO from 2 tables and will be returned from a HQL ...
0
votes
2answers
67 views
How map many-to-many don't use primary ID on FluentNhibernate
help me please.
I have 3 entities.
Family (GENERIC_ID,...)
BPayReference(BPayReferenceID,GENERIC_ID) where BPayReferenceID GeneratedBy.Assigned()
Invoice (ID, ..., BPayReferenceID) where ...
1
vote
3answers
3k views
Using Fluent NHibernate with NHibernate 3.3
I have just seen that NHibernate 3.3 is out and I have tried implementing it in a fresh project.
Much like with version 3.2 I have run into issues with using Fluent NHibernate, I have added version ...
1
vote
2answers
389 views
Hibernate : delete parent not referenced by children
I need to delete a parent when there are no children that reference it. Is this possible in Hibernate? (actually I'm using fluent nhibernate but I presume the answer is the same)
e.g. I have many ...
2
votes
2answers
389 views
NHibernate multi query / futures with Oracle
I am trying to use futures in NHibernate 3.2 and Oracle 11gR2. This doesn't seem to be supported although I'm not sure. I found this issue on NHibernate Jira that makes it seem like futures are ...
0
votes
2answers
1k views
Fluent NHibernate ignore property inside the ClassMap, using FluentMappings
I am using NHibernate 3.1 and Fluent NHibernate as ORM in my project. I need to have a property of a POCO ignored by Fluent NHibernate. At first, my post might look as exact duplicate of this ...
1
vote
1answer
238 views
Composite Id containing a null value in NHibernate
I have a situation where I have a table with 3 columns which contain IDs referencing defferent tables. In addition to those 3 columns I have a few columns with some properties.
Let's say that the 3 ...
-2
votes
1answer
358 views
Perfomance Comparision NHibernate and ADO.NET
I have evaluating the performance of NHibernate and ADO.NET. I have created a test application which has an Employee table with 75,000 records. When I try to get data using NHibernate it is very slow ...
0
votes
2answers
222 views
NHibernate : update an ISet collection
See the class and mapping below. I'd like in some case update the address (at this time, it's all the time one address).
I do this :
var customer = session.Get<Customer>(customerId);
...
0
votes
1answer
27 views
List not loaded when get an object
Look the mapping below.
When I do :
session.Get<Customer>(theId); The result return is the right customer but the Address list is empty. In the database, I see the customer record and the ...
2
votes
1answer
109 views
Is it possible to set foreign key to null without HasMany?
I have entity Territory
class Territory
{
public int Id {get;set;}
public string Title {get;set;}
}
and some entities which have references to it, such as
class ...
2
votes
3answers
163 views
What to be aware of when upgrading NHibernate from 1.2 to 3.2?
Question says it all. Working with an old codebase that is using NHibernate 1.2. What do I stand to gain, and what will I lose, or experience in pain, as part of this upgrade? Is the total effort ...
0
votes
2answers
138 views
Fluent Nhibernate : One-To-Many trouble
I have a "Activity" entity, this entity can have several "Task".
Here the code for the entities :
public class Activity : Entity<int>
{
public virtual int Id { get; set; }
public ...
0
votes
1answer
232 views
Mapping Tables with NHibernate
I'm new to NHibernate, So I'm not sure if I this is even the place to ask questions. But here goes.
This is my problem:
I am building a website using Orchard CMS. All the Orchard tables are mapped ...
0
votes
1answer
454 views
How create ISessionFactory with FluentNHibernate
In a project MyProject.Data, I have a folder named mappings with all mapping in.
namespace MyProject.Data.Mappings {
public class EmployeeMap : ClassMap<Employee>
{
public ...
2
votes
1answer
398 views
Fluent NHibernate - Mapping List<decimal> to ordered child table
I'm refactoring a fluent nHibernate mapping, and I can't seem to figure this one out. I want to remap a property with type List<decimal> to a child table, but using a single HasMany if ...
1
vote
2answers
671 views
Fluent NHibernate not mapping child rows to a collection property (DB2 Database)
Background:
I am working on a legacy DB2 database, so I have no control over the schema. I have searched this site for answers and have found none. I have also searched google and not found a ...
0
votes
1answer
109 views
Fluent NHibernate Maps with ADO.NET
I have a C# .NET 3.5 data access layer that is a plain ADO.NET implementation. I'm looking to replace my sub-standard homegrown Object Relation Map classes with something more robust such as ...
0
votes
1answer
196 views
Set NHibernate database at runtime
Imagine, I have a website, this one offer a service. To access to this service, I need to enter login/password. I'd like depending of the login set the database to use. Example :
login1 will use ...
0
votes
1answer
141 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 ...
