0
votes
1answer
39 views
Id property not populated
I have an identity mapping like so:
Id(x => x.GuidId).Column("GuidId")
.GeneratedBy.GuidComb().UnsavedValue(Guid.Empty);
When I retrieve an object from the database, the …
1
vote
0answers
4 views
How do I exclude a base class using fluent mappings in Fluent NHibernate?
I have an abstract base class, Entity, that all my POCOs derive from:
public abstract class Entity
{
public virtual Guid Id { get; set; }
}
And the mapping file:
public cla …
0
votes
0answers
8 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 t …
0
votes
1answer
210 views
hibernate collection mapping with list and super entity class
hello good fellas!
here i am again in my self learning hibernate and personal experiment project to gain more understanding.
Here is the description of my environment:
i have a su …
5
votes
3answers
515 views
Generate table indexes using Fluent NHibernate
Is it possible to generate table indexes along with the rest of the database schema with Fluent NHibernate? I would like to be able to generate the complete database DDL via an au …
0
votes
1answer
90 views
Nhibernate - Mapping List doesn’t update List indexes
Hi,
I'm having one self-referencing class. A child has a reference to its parent and a parent has a list of children. Since the list of children is ordered, I'm trying to map the …
1
vote
5answers
51 views
Is there a way to define reusable properties to n-hibernate mappings?
I have a scenario that i want to add some standard properties to my entities. Meaning that i will have e.g. 1 int and 2 string properties applied to all relevant entities. I have o …
2
votes
1answer
69 views
How can an indexed many-to-many set be mapped in NHibernate?
Consider an entity, Entry, that contains a collection of another entity (many-to-many), Category, such that the Entry can be associated with a given Category no more than once (imp …
0
votes
1answer
22 views
NHibernate “Errors in named queries”
I have the following named SQL query defined:
<sql-query name="ItemSearch">
<return class="ItemSearchResult">
<return-property name="Item" column="ItemI …
0
votes
0answers
22 views
Nhibernate : How to map tow same-structure tables to a entity class
I encountered the following troubles:
i have two table that have same structure: t_collectingResult_live and t_collectingResult_history, i need to operate them in a same session …
0
votes
1answer
281 views
Nhibernate ValueType Collection as delimited string in DB
Hi
I have a legacy db that I am mapping with Nhibernate.
And in several locations a list och strigs or domain objects are mapped as a delimited string in the database. Either 'str …
1
vote
2answers
39 views
Fluent NHibernate AutoMapping with discriminator
I'm trying to map inheritance with discriminator, but subclasses don't have discriminator value. How to solve it using AutoMappings?
Domain objects are as following:
public abstr …
0
votes
2answers
57 views
Many-to-many collection mapping in NHibernate
My application is a multi-user podcast aggregator, using NHibernate 2.1 (and .NET 4.0 if that changes anything). I'm also a complete NHibernate n00b.
Details of each podcast are …
0
votes
2answers
52 views
Why is NHibernate doing an UPDATE rather than an INSERT?
Continuing my explorations in NHibernate with my podcast application, I've come across something odd: NHibernate is UPDATEing when I would expect an INSERT. The situation is a sim …
2
votes
2answers
84 views
What is the correct way to define many-to-many relationships in NHibernate to allow deletes but avoiding duplicate records
Hi,
I've been fighting with an NHibernate set-up for a few days now and just can't figure out the correct way to set out my mapping so it works like I'd expect it to.
There's a b …
