Fluent NHibernate lets you write NHibernate mappings in strongly typed C# code. This allows for easy refactoring, improved readability and more concise code.
0
votes
0answers
2 views
nhibernate CurrentSessionContext.Hasbind giving object reference not set
Hi i m using WebApi Mvc4 framework .net 4.0
I create a sessionFactory as follows:
public void ConfigureNHibernate(IKernel container)
{
var sessionFactory = FluentNHibernate
...
0
votes
0answers
27 views
How to eager load the Query
I'm facing with a select N+1 issue with the following Query. I'm new to NHibernate. Can anybody help me resolve this query in NHibernate using Eager loading.
public ...
0
votes
0answers
15 views
FluentNhibernate not working with PostgreSQL
I'm new to Fluent Nhibernate and PostgreSql and I'm stuck witha problem I need to extract data from the postgresqldb but the code I used is not working for postgre but the same code is fine with MSSQL ...
0
votes
1answer
29 views
FluentNHibernate Mapping with same primary key
i have 2 tables like this:
TABLE ARTICLE
Id int NOT_NULL PK
Title nvarchar(50) NOT_NULL
TABLE CONTENT
Id int NOT_NULL PK
content nvarchar(MAX) NOT_NULL
remarks nvarchar(200)
so each article will ...
0
votes
2answers
11 views
Fluent Nhibernate Mapping with Column
Hi i am stuck with one problem while dealing with fluent nhibernate.
My user entity is below
public class UserEntity
{
public virtual int Userid { get; set; }
public ...
0
votes
2answers
23 views
FluentNHibernate mapping without foreign key
i have this 2 class
public class Product {
public virtual Guid Id {get; set;}
public virtual string Name {get; set;}
public virtual Description Description {get; set;}
}
public class ...
1
vote
1answer
23 views
NHibernate LINQ : Why is a query using the incorrect char value if I repeat the call?
Using NHibernate 3.3.1.4000 / .Net 3.5
I have an object I'm mapping to an existing Oracle 10g database :
public MyJob : LegacyOracleDbObjects {
public virtual int JobID { get; protected set; }
...
0
votes
0answers
30 views
NHiberante: Why does Session.Delete(obj) emit Update and not Delete?
I have a simple object that has just a reference to some other object, it is simplest one directional association. So it is mapped using "References" like this.
References(x => ...
0
votes
1answer
24 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 ...
1
vote
0answers
24 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
1answer
28 views
NHiberbate calling procedure using named query in c#
I am facing some problem while calling procedure using named query in nhibernate. I can easily call simple procedure / parametrized procedure but I have procedure which accept three argument, one is ...
1
vote
0answers
18 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, ...
2
votes
1answer
48 views
Nhibernate throwing Session is closed
I'm flapping in the wind, so I thought I'd ask here... Please let me know if this is obvious and has been answered before.
I'm building an MVC3 site which works fine while I'm running it with one ...
0
votes
2answers
38 views
Nhibernate and MVC. Null object from query
So I am rather new to using NHibernate for database access and after studying its usage elsewhere in an application I am editing, I cannot seem to get it to work for me and I do not know why. ...
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
2answers
21 views
fluent nhibernate one to many collection, filtered by enum
I think I have a design issue here.
essentially I have a class called office
class Office
{
public virtual long Id { get; set; }
public virtual string Code { get; set; }
public virtual ...
0
votes
1answer
19 views
NHibernate entity security/filtering
I'm attempting to coerce an existing NHibernate application into something like a multi-tenant application. The data model is fairly large (60+ entities) although only a small subset of these ...
0
votes
3answers
45 views
Unable to cast object of type 'NHibernate.Collection.Generic.PersistentGenericBag to type 'System.Collections.Generic.List
I am trying to load the domain class by deserializing an xml file. So I have used System.Collections.Generic.List in the domain class. But when I try to save the object using Session object then it is ...
0
votes
0answers
16 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
18 views
NHibernate. SessionFactory.Delete deletes all tables
I try to run example from https://github.com/jagregory/fluent-nhibernate/wiki/Getting-started but after running next code all tables are cleared. I don't understand why it happens. I expecting that ...
0
votes
0answers
15 views
How to generate database LocalDB with NHibernate
'm having trouble creating a test that generates the database
I read several articles about using Instance pipe name. But I do not know how to use!
Project
It follows the structure of my app
...
0
votes
5answers
64 views
Nhibernate on collection item removed
I have 2 classes:
public class Entry{
...
public virtual IsDeleted {get;set;}
public virtual int MyClsId {get;set;}
public virtual MyClass MyCls {get;set;}
}
public class MyClass{
...
...
0
votes
0answers
19 views
An invalid or incomplete configuration was used while creating a SessionFactory. Errors in named queries:{}
I'm new to nhibernate and fluent nhibernate. For one of our projects we are using fluent hibernate which works fine, we would like to extend this to support .hbm.xml files mainly to execute stored ...
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
1answer
19 views
Integrating nHibernate Envers _AUD tables original row
I am trying to integrate Envers in an existing nHibernate Database.
I need the default or the original AUD values in the respective *_AUD tables.
i.e initial value, else when the first time the user ...
1
vote
1answer
26 views
how to insert a data into table with a key already defined
I am using Nhibernate in my project. I had a table which had a primary key whose Identity specification was set to true, It was generating auto increment value. this is working fine.
This was ...
0
votes
0answers
21 views
IsDirty() flushes new Collection entities
I have a WPF application and am using NHibernate. My question is how do I manage change?
I am not completely sure about the behavior of the IsDirty.
This link describes my problem. The problem list ...
0
votes
1answer
25 views
What exactly is a Cartesian product in NHibernate?
I often hear the word "Cartesian Product" from my co-workers when there's a Domain Model with a collection in a collection and eager fetch of the same. Let's say I have the below Model.
public class ...
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
31 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; ...
2
votes
0answers
75 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
15 views
How do you automap database schema for a set of entities
My database has multiple schemas, the fluent nhibernate faq states that you can specify schema for the entire database, or per entity. I want to specify schema per AutoPersitenceModel, can this be ...
0
votes
0answers
13 views
Joining a DynamicComponent when using NHibernate causes full entity loading
I'm trying to create an extension table for an entity of mine, where some instances of the entity will need various extra (fixed) properties. I've followed the approach outlined by
...
0
votes
0answers
29 views
How to connect PostgreySql 9.2 with ASP.NET MVC 4 using fluent Nhibernate
I'm stuck with a problem I need to connect my MVC4 web application with PostgreSql 9.2 using Fluent Nhibernate and I dont know how to do that I Connected my app with mssql 2008 using Fluent Nhibernate ...
0
votes
2answers
45 views
NHibernate - first query is painfully slow
Database table (PostgreSQL) containing 10000 rows:
CREATE TABLE test
(
id bigserial NOT NULL,
text text,
CONSTRAINT test_pkey PRIMARY KEY (id)
)
Classes:
public class Test
{
public ...
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
38 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
18 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
12 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()
{
...
1
vote
1answer
15 views
How to get a single value from db using Fluent Hibernate
I'm new to Fluent Hibernate And I'm stuck with a problem I want to get the email id of a user by using his user name means I want to implement the following code using fluent Hibernate
Select emailId ...
0
votes
1answer
27 views
Login control using fluent nhibernate
I'm new to fluent nhibernate and I'm stuck with a problem I created a login control in asp.net using tradition methods And I want to use Fluent nhibernate for upgrade my code and I'm stuck with it my ...
0
votes
1answer
15 views
How to check data in db using fluent Nhibernate
I'm new to fluent NHibernate and I'm stuck with a problem I'm creating an app and I've a login page in my app and How can I check that the entered name and password is exist in my db using fluent ...
0
votes
1answer
19 views
Mapping an Array using Fluent N Hibernate
I am not sure if fluent n hibernate can do this or not, but I cannot figure out how.
I have a table - cases and some properties
ownerId, brokerId, shipperId
I want to map this to my property:
...
-1
votes
1answer
17 views
fluent nhibarnate doesn't delete orpahns
I found some similar threads but all got my code as answer.
I am using One-to-Many relationship.
father mapping:
HasMany(x => ...
0
votes
1answer
38 views
Working around Duplicate association path bug in Nhibernate with Query Over
I've got a bit of code that tries to access same association path twice and they're really same aliases but because I'm using query objects, I have them in two different places and I am not really ...
0
votes
1answer
21 views
NHibernate Queryover select distinct record
i am new to NHibernate and queryover. I would like to write nhibernate query to the following sql.
SELECT A.*
FROM V_FDS_BANK_MASTR_ADTWORKFL A,
(SELECT DISTINCT BANK_CD
FROM ...
0
votes
0answers
40 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
1answer
23 views
Querying Encrypted Types, IUserType
As a requirement in the app, we have to keep some of the data in database as encrypted strings, so we have used the Encrypted Type, which implements NHibernate's IUserType (courtsey NHibernate ...
0
votes
0answers
33 views
Mapping an Enum with Flags using NHibernate to varchar column
I have this enumeration in c#:
[Flags]
public enum MyEnum
{
One,
Two,
Three,
Four
}
and I'm trying to figure out if I can persist it into the database, via NHibernate using an ...
1
vote
1answer
65 views
NHibernate IPostInsertEventListener : Insert executed multiple times
I am trying to test a simple NHibernate-based auditing mechanism that stores one row per changed property into a changelog table. What it actually does, is perform the actual insert statement as ...
