Fluent, XML-less, compile safe, automated, convention-based mappings for NHibernate
0
votes
1answer
12 views
Setting up one to many relationship with Fluent Nhibernate
I'm having a bit of an argument with my co-worker that I can't seem to find an answer to yet this is very basic stuff.
Establishing one-to-many relationship in Fluent Nhibernate entity.
Let's take ...
0
votes
0answers
13 views
Wrong column type - Found varchar2, Expected NVARCHAR2(255)
i have a mapping configuration for a composite-key using fluent nhibernate and i need some help, because it is not working.
I have one class called Agencia that have a composite key for two Int16 ...
0
votes
0answers
15 views
Calling stored procedure usign Nhibernate named query
I am facing some problem while calling procedure using named query in nhibernate.I have a procedure which accept three parameters, first one is varchar(max) which is actually a guid list, second is ...
0
votes
0answers
13 views
nhibernate mapping generator integrated to build
I have searched for automatic mapping generator for nhibernate. So far I have tried following
NHibernate Mapping Generator
Devart Entity Developer
Codesmith generator
From those Nhibernate Mapping ...
0
votes
0answers
14 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
8 views
Fluent Nhibernate Automapping. An association refers to an unmapped base class
I have the following situation:
AssemblyX with db entities refers external assemblyY and use its classes as base classes. AssemblyX adds some navigation properties if necessary.
Of course I can ...
0
votes
0answers
13 views
Adding IAutoMappingOverride with interface for all domain classes
I have an IAuditable interface that defines my class domain as auditable.
public interface IAuditable
{
DateTime CreateAt { get; }
IUser CreateBy { get; }
DateTime? UpdateAt { get; }
...
0
votes
0answers
14 views
FluentNHibernate get hierarchical data correctly c#
I am having trouble retrieving hierarchical data of categories and subcategories using FNH.
This is how my CategoryModel looks like
public class Category
{
public virtual long CategoryId ...
0
votes
0answers
6 views
Struggling with Fluent NHibernate Mapping
I am trying to put together a data relationship using Fluent NHibernate, but I’m banging my head against the wall :(. I need help completing the mapping class below:
I have the following classes:
...
1
vote
0answers
30 views
Fluent NHibernate two levels Inheritance Issue
I want to have Table per Type in one level and one Table for hierarchy in another level.
Is it possible?
description is here ->
I have these classes:
public class BaseItem
{
public int Id{ get; ...
0
votes
0answers
21 views
Generating framework with NHibernate for Complex reports
I'm developing a application with wpf, Fluent NHibernate and MySQL,we need to generate complex reports. Can anyone help me out to find the best framework to implement for report generation at Database ...
1
vote
1answer
37 views
NHibernate QueryOver.List causing N+1
Having a seemingly bizzare N+1 select problem in NHibernate. I am executing a query where I'm asking for a bunch of entities where one of its linked properties is null. I don't actually need the ...
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)
...
0
votes
0answers
11 views
Fluent NHibernate incorrect domain mapping
I trying to map domain model. I have a problem with class map that inherit from base class. Below is method my fluent session configuration.
private IUnitOfWork GetUnitOfWork()
{
...
0
votes
0answers
39 views
How to define a nullable foreign key in Fluent NHibernate?
I want to have a foreign key that can be null: a child has zero or one parents.
NHibernate always complains about Foreign key reference target does not exist. Is it even impossible to do what I want?
...
0
votes
0answers
23 views
Fluent NHibernate to query stored procedure without an hbm.xml mapping
Is there any way to query stored procedure in Fluent Nhibernate without creating an hbm.xml file mapping?
0
votes
0answers
8 views
Fluent NHibernate HasMany cascad deleting
I have mapping for parent:
public PersonMap()
{
Map(x => x.Gender).CustomType<GenderEnum>().Not.Nullable();
Map(x => x.FirstName).Not.Nullable();
...
-1
votes
0answers
16 views
Can Stateless session and normal session in NHibernate coexists in same application
I want to improve performance of my application. So I'm using stateless session but the original code uses normal session. Can I use statelesss session in one module/page and normal session in ...
0
votes
1answer
37 views
Fluent NHibernate - mapping multiple levels of inheritance with multiple discriminators
With the following class hierarchy - what would the DiscriminateSubClassesOnColumn("").Formula([insert custom sql here]) statements look like?
public abstract class Base
{
public virtual string ...
0
votes
1answer
26 views
Storing an object[] as column in Fluent NHibernate
I have the following (partial) model:
class LogMessage{
string Format;
object[] args;
}
I want to store args[] as a single column in the table, taking advance of the fact that format ...
1
vote
1answer
51 views
Creating DataModel Library using NHibernate
I am writing an Class Library as DataModel. DataModel capable of handling all the Database related task. I am using NHibernate and Fluent NHibernate for the same.
Now the question arises are as ...
0
votes
3answers
118 views
Fluent NHibernate HasMany mapping inserts null in foreign key
I have 2 entities:
public class Parent
{
public virtual string Number { get; set; }
public virtual IList<Child> Children { get; set; }
public Parent()
{
Phones = new ...
0
votes
0answers
10 views
Convention to map a property to column
For example i have an Entity base class.
public class Entity
{
public Guid Id { get; set;}
}
and derived classes
public class Customer : Entity
{
public string Name { get; set; }
}
public ...
0
votes
0answers
33 views
Fluent NHibernate: Referencing multiple tables with one variable by discriminating on a column?
I'm not sure how to phrase this. If someone has a better idea, let me know so I can edit the title.
I have a table that holds items. The table is something like this:
ItemList
---------
Id [PK]
...
1
vote
1answer
23 views
Cached Fetch for User Roles from NHibernate in an MVC App
Using classes like this...
public class Login
{
public virtual Guid LoginId { get; set; }
public virtual string Name { get; set; }
public virtual string Email { get; set; }
public ...
0
votes
0answers
23 views
How to combine TPH and TPT inheritance in Fluent NHibernate?
How to combine Table Per Hierarchy and Table Per Type inheritance in Fluent NHibernate, for the same base class?
0
votes
1answer
40 views
How to map an entity to entitycollection dictionary in fluent nhibernate
I have this classes (after removing redundant information from them):
public class Category : BaseEntity
{
public virtual Category ContainingCategory { get; set; }
public virtual ...
2
votes
1answer
67 views
SubClass Mapping in NHibernate by using same table
I have one table. That is structure.
There are two classes 1. Structure and 2. Plate
Plate is inherited from Structure. The classes are:
public class Structure
{
public virtual decimal Id { get; ...
1
vote
0answers
20 views
How to map an value object in his own table with Fluent NHibernate?
I have the following scenario: I have a component of an entity, but instead of store it in the same table I need to store in a separate table. The relationship between this two tables is one to one ...
0
votes
0answers
26 views
Mapping composite key involving component in NHibernate
I have a table Item say,
CREATE TABLE ITEM(
Name NVARCHAR(20),
NetQuantity DECIMAL(3,2),
SiUnit NVARCHAR(3),
Supplier NVARCHAR(30)
);
And I have an Item class like this.
public class Item{
...
0
votes
0answers
5 views
Composition or Inheritence? Nhibernate's support?
I have a Customer class which has a List<Order> orders. I needed a method GetNumberOfOrdersWith(int productId) which gives the count of orders containing a particular product. Now i decided to ...
0
votes
1answer
32 views
Assign a part of a composite foreign key at runtime
I have a class that references another class with a composite Id:
SingleIdClassMap(){
Id(x=>x.Id);
References(x=>CompositeIdClass);
}
CompositeIdClass(){
CompositeId().KeyReference(x ...
2
votes
1answer
98 views
Fluent NHibernate: Issue with many-to-many relationship with custom intermediary table
(see bottom for updates)
So, I have two objects (we'll call them ClassA and ClassB) that exhibit a many-to-many relationship (ClassA can have multiple ClassB objects and vice versa).
Rather than a ...
0
votes
1answer
58 views
Fluent NHibernate mapping to return description from lookup table
We have the following database structure:
UserTeam table
Id (PK, int not null)
UserId (FK, int, not null)
TeamId (FK, int, not null)
RoleId (FK, int, not null)
libRole table
Id (PK, int not null)
...
0
votes
0answers
23 views
How to correctly configure Fluent NHibernate
I am a newbie to FNH so this might be a simple issue.
I have a helper class in my repository layer, like so:
public static class SessionFactoryHelper
{
private static ISessionFactory ...
0
votes
1answer
57 views
Fluent nHibernate Unit Test HasOne mapping
I have situation where I DO require one-to-one relationship thus the usage of HasOne. Yes I do want to have separate table for Patrons and Members. Following are my classes and their corresponding ...
0
votes
1answer
51 views
Fluent NHibernate Composite Mapping
I am trying to map two tables :
the first one has an id (idA) and a field with the id (idB) of the other table.
the other one has a composite key based on the previous id (idB) and an other one ...
1
vote
2answers
161 views
error dehydrating property value with fluent nhibernate with bit
I have this class:
public class Person
{
public virtual long ID { get; set; }
public virtual string FirstName { get; set; }
public virtual string LastName { get; ...
0
votes
1answer
31 views
NHibernate - Has Many - Has One - ICriteria
I have the following tables:
Table Material
Id
Table Zone
Id
Table MaterialZone
Id
Material_Id
Zone_Id
Price
Edit
What I need is to have the MaterialZone (whit the current Zone) in the Material ...
0
votes
0answers
30 views
Attach a filter to all entities using fluent nhibernate
We are using conventions and automapping to map our entities. We need to apply a nhibernate filter to all entities that are mapped. How do I do that with fluentnhibernate?
Since I am using ...
0
votes
0answers
63 views
Fluent NHibernate: Two classes, same name, one table
Say I have a user table with the following columns.
Name
Email
Password
Birthday
And then I have two entities in two different assemblies, both called user.
namespace Namespace1
{
public class ...
1
vote
1answer
15 views
can I somehow view FluentNHibernate automappings?
I've got a table I'm not sure is being mapped correctly. I tried looking around the source, but couldn't easily find a way to look at the mappings for a particular entity.
Can someone point me to ...
0
votes
0answers
22 views
FNH Mappings with DB2 GeneratedBy Identity
I am trying to map a table with an identity key field.
When I try to save I get the error SQL0803 Duplicate key value specified
INSERT INTO libpjk/Audit (AuditId, AuditDate, UserId, Keys, ValBefore, ...
0
votes
2answers
121 views
nHibernate - Populate a mapped function with namedQuery
I'm using Fluent nHibernate for my data layer, and I have a class that is mostly populated through nHibernate/LINQ but in a few advanced usages, needs to be populated by a stored procedure.
The ...
1
vote
1answer
48 views
do i need to set the value of the ONE side when adding an entity to a one-to-many collection?
This seems like a super obvious question, but I haven't been able to find a clear answer.
I'm using FluentNHibernate automapping with the DefaultCascade.All() convention.
Entities are saving, but in ...
0
votes
1answer
52 views
Different sequences for subclasses with Fluent NHibernate
I am using Fluent NHibernate and table per concrete class for inheritance mappings.
There is an abstract base class and two other subclasses.
My base class has Id column. Created tables are ok. All ...
2
votes
1answer
68 views
Fluent Nhibernate - make References from children side only
I have Survey that HasMany Question that HasMany Option.
I want to create a reference from Option to Survey.
The problem is that Every time I want to create a new Survey with all of its children, I ...
1
vote
3answers
135 views
Mapping localization tables in Nhibernate
Im building a localized application. All data needs to be available in different languages. As a storage model I try to use Nhibernate because of the better performance over Entity Framework. I store ...
1
vote
1answer
65 views
NHIbernate “References” Property generating Select + 1 even though correctly OUTER JOINING
Ok, I am a little stumped on this NHibernate query. The confusion is around PasswordResetToken.
Firstly, here is the mapping:
public ContactMap()
{
Table("Contact");
Id(x => ...
0
votes
0answers
26 views
Fluent NHibernate mapping getting Invalid Index N error
I’ve inherited an internal web application using Fluent NHibernate, which I’m still a novice with setting up. I’ve run into a problem with the mapping that has only showed up since I’ve started trying ...