Tagged Questions
0
votes
1answer
21 views
Nhibernate - lock DB
I'm using Nhibernate for the first time and I 've noticed that when I call BeginTransaction method it lock my Database.
Instead, entity framework (ObjectContext or DbContext too) keeps all changes in ...
0
votes
1answer
35 views
Cascade Update one-to-many with NHibernate
I'm struggling with a NHibernate mapping problem. I'm using Repository/UnitOfWork pattern, and I'm trying to cascade-persist my objects through update method. For an example: I can alter Foo, ...
2
votes
0answers
72 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
0answers
17 views
FlushAction and Lazy attribute
I have a Solution 'MySolution' in VS. In one project 'Domain' I have defined de following classes:
public class CarBase
{
public virtual void Foo();
}
public class Car : CarBase
{
...
0
votes
2answers
134 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
0answers
395 views
NHibernate vs Entity Framework 5 auto connecting entities
Recently I've come back to the question NHibernate vs EF5 for the Enterprise Application.
I know many important differences, but this one is the most suprising for me.
Consider two classic entities, ...
0
votes
1answer
64 views
How do I generate tables / database schema from NHibernate mapping file (XML)
I have a XML file with all the information of a tables column names and types. How do I create that table in SQL Server 2008.
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping ...
0
votes
2answers
54 views
Nhibernate Found: integer, Expected INT
I get an exception:
NHibernate.HibernateException: Wrong column type in main_Command for column Id.
Found: integer, Expected INT
The mapping is:
<id name="Id" type="int">
<generator ...
1
vote
2answers
72 views
How to create NHibernate relationship mapping between multiple entities to another entity (i.e inheritance mapping)
I have this relationship between Car, Bike, Skateboard object with a Person object.
The relationship is stored in Ownership table.
How do I create this mapping in NHibernate ? I'm trying to follow ...
1
vote
2answers
88 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 ...
1
vote
1answer
63 views
Map some of table fields into a dictionary
We have a legacy system which has the ability to add custom fields to its entites. This feature is implemented badly, to be exact: each entity table is extended with fields Custom1, ... Custom 10, and ...
-1
votes
1answer
54 views
Complex mappings with ORM
I have used Entity Framework Code First once and although it is easy to deal with i feel like it forces you to fight your OOP principles as i tend to break many habits and design decisions just so ...
1
vote
1answer
228 views
(N)Hibernate Criteria: summing multiple distinct columns
None of the similarly worded questions on SO seem to match, and googling pretty much points to SO for this, so let's try this:
I have a JournalEntry entity class that looks like this:
public partial ...
0
votes
2answers
56 views
Nhibernate pre-set id on entity, can't get it to persist
I have an entity Account that, under normal circumstances, will have its Guid Id generated by NHibernate. However, there are a few Account Id's that I want to "hard-code", accounts that will be ...
0
votes
1answer
34 views
Which Hibernate ( or NHiberate) tags and/or mapping classes would I use to create mappings to the bridge table called contract?
Let's say I have a bridge table with more than two foreign keys that make up it's composite key.
For Example,
Goverment table
gov_id int primary key
cournty_name String
NonProfitOrg Table
...
1
vote
1answer
395 views
NHibernate Bidirectional Many-to-Many Mapping List / Bag
I am struggling with a bi-directional many-to-many mapping where the order is important on one side, but not the other.
I have two classes: Program and Student.
A program has many students and the ...
1
vote
1answer
146 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 = ...
-3
votes
1answer
70 views
Why does NHibernate overwrite the last record on session.Save?
The NHibernate session.Save overwrites last record. This occurs starting on the second session.Save operation and then on it does not add new records any more but overrides the last record. Code below ...
0
votes
0answers
63 views
NHibernate - Mapping Several One-To-Many Relations to the Same Entity
We are creating a system using NHibernate ORM (Map-By-Code) with the following entities:
Chain
Branch
PhoneNumber
Chain and Branch may have a list of PhoneNumbers (other entities will have them as ...
0
votes
1answer
115 views
How do I get NHibernate to return data on composite key table?
I have a junction table in my database. I need to read the id values and use them in my program. I cannot get NHibernate to return any records in the database. It appears as though my mapping file ...
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; }
...
0
votes
2answers
114 views
Best OR/M for use with Interfaces
In our next project we have a need for using interfaces like this (Example code)
public interface IFoo
{
string Name {get; set;}
IList<IBar> Bars {get; set;}
}
public interface IBar
{
...
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.
6
votes
2answers
312 views
NHibernate mapping by code (Loquacious) - Cascade options
I have a question on Cascade enum options behavior when using NHibernate Mapping By Code.
Enum has following options:
[Flags]
public enum Cascade
{
None = 0,
Persist = 2,
Refresh = 4,
...
1
vote
1answer
159 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 ---> ...
0
votes
0answers
47 views
nhibernate schema export create db access error
I'm trying at runtime to create db in sqllite and althought I'm pretty sure that my code is fine exception is thrown with following message:
NhibernteException was unhandled by user code
...
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
3answers
103 views
Alternatives for using EF in MVC [closed]
I have a legacy database which we are going to use as a back end in our new project. The project will be in MVC and the plan is to use EF. I read about EF not being so useful if there are no PKs in ...
0
votes
1answer
98 views
Fluent NHibernate auto mapping 2 class to one entity
How to auto mapping two class to one database entity?
public abstract class Root
{
public virtual int Id { get; set; }
public virtual string Item { get; set;}
}
public class First
{
...
2
votes
1answer
116 views
What ORM can I use for Access 2007 - 2010? I'm after WPF binding to the tables etc
I've a legacy database that all sites have, it describes specific content in a number of catagory/subcatagory/child item format. Until now, adding/editing the content is either manual work in the ...
0
votes
0answers
60 views
swap lightspeed for nhibernate
I'm currently building a little console app that's using lightspeed as my ORM to talk to my database. However I am going to swap this out in preference for nHibernate.
I'm quite new to the world of ...
3
votes
3answers
166 views
What are the benefits of ORM lazy loading?
I've been tasked with researching data layer underpinnings for a new reporting system and have spent a lot of time evaluating ORM's over the last few days. That being said, I've never dealt with ...
2
votes
1answer
216 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
190 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 ...
0
votes
2answers
168 views
nHibernate Log4Net logging exception
I have a project, fully setup and tested successfully with nHibernate that I am trying to run in debug mode with Visual Studio 2010. Running the project prior to setting up log4net obviously runs ...
2
votes
1answer
113 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 => ...
0
votes
0answers
75 views
Mapping of inherrited instances in NHibernate
I have a class
public class Template
{
public Template()
{
Children = new List<Template>();
}
public virtual IList<Template> Children { ...
1
vote
1answer
67 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] ...
0
votes
1answer
82 views
NHibernate, join between tables and return a specific type
I have 2 tables, I'd like place some fields in a result class, but I'm stuck. The code I want look like this with Entity Framework :
var res =
(from p in context.EstimationItem
join q in ...
...
1
vote
1answer
56 views
NHibernate strange behavior inside POCO's virtual method (Very simple case)
I was coding a very simple case with 2 classes: Parent and Child. Parent has n children, and children has 1 Parent. I set up a bidirectional relationship between them.
I was trying to add a ...
0
votes
1answer
227 views
Relationships fixup in EntityFramework vs NHibernate
I have been experimenting with Entity Framework 4.4, NHibernate 3.3.1.4000 and SQL Server and I have noticed a difference when it comes to fixing up the relationships when you commit your changes, ...
2
votes
0answers
133 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
2answers
287 views
NHibernate 3.3: Setting the type to Ansistring in an Id for Mapping by code
I am mapping the following entity as such:
public class PersonEntity
{
public virtual string PersonId { get; set; }
public virtual String Salutation { get; set; }
public virtual String ...
1
vote
1answer
56 views
Mixing persistent with volatile data
I have a .Net server application backed by a SQL server DB. I'm using nHibernate (fluent) to handle all the DB operations. I'm facing serious performance and concurrency issues, obviously deriving ...
1
vote
1answer
105 views
Upgrading an old project from NHibernate 1.2 to 3.3
WE have an old project, which was originally written in .NET 2.0 and VS2005, which ended up in VS2008. It uses NHibernate 1.2 for data access. As part of our upgrade, we moved to .NET 4.0 and VS2010, ...
0
votes
1answer
130 views
A code-first approach for nHibernate [closed]
I've stepped thru the Entity Framework workflow a few times and enjoy working with the code-first approach offered in recent versions. I'm facing a project that has a few considerations tilting me ...
0
votes
1answer
199 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
144 views
NHibernate VS LLBLGen Pro [closed]
This was the original question.
nHibernate versus LLBLGen Pro
After three years, things have evolved.
now we have:
FLUENT NHibernate
NHibernate LINQ
LLBL Gen Pro generate FLUENT NHibernate ...
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 ...
3
votes
2answers
234 views
How to map an abstract property with NHibernate union subclass?
Referring to Ayende's post here:
http://ayende.com/blog/3941/nhibernate-mapping-inheritance
I have a similar situation that can be reached by extending the union-subclass mapping of the above post a ...

