NHibernate is a mature, open source object-relational mapper (ORM) for the .NET framework.
0
votes
0answers
9 views
Castle Activerecord and Nhibernate with property-ref
I have a database schema that I can't change. It has integer primary keys, and a unique UUID column in the models. The foreign keys are done through the UUID column (not the primary key)
For example, ...
0
votes
0answers
15 views
Nhibernate - Get a count of sub query for every id in the query
I'm having a lot of trouble quering a part of my domain entities:
public class Property
{
public virtual int Id { get; set; }
public virtual IList<Value> AllValues { get; set; }
}
...
0
votes
0answers
9 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
...
1
vote
1answer
21 views
In NHibernate, using a Disjunction gives double results
I'm trying to make a select with DetachedCriteria, I want to add several conditions seperated by OR at runtime.
If I use:
Restrictions.Or( cond1, Restrictions.Or(cond2, Restrictions.Or(cond3, ...
0
votes
0answers
21 views
How to use DetachedCriteria for a complex sub sub query for different properties in a sub query?
I have this classes:
public class Property
{
public virtual int Id { get; set; }
public virtual IList<Value> AllValues { get; set; }
}
public class Value
{
public virtual int Id { ...
0
votes
2answers
19 views
how to map to a SortedList in NHibernate
I have an nHibernate parent child table relationship. The parent class is currently pulling the children into a List but I want to put them in a SortedList based on an ordering column in the table. ...
0
votes
4answers
46 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
1answer
63 views
How to call a c# method when working with LINQ to NHibernate?
How to call a c# method when working with LINQ to NHibernate?
The below code fails:
List<UriTemplate> result1 = (from uriTemplate in this.SessionFactory.Session.Query<UriTemplate>()
...
-1
votes
0answers
22 views
Parse and save xml to oracle database c#
I need to parse xml and save it to oracle DB. I created a data model in my c# programm using xsd.exe and I use the following code to fill my data model:
XmlSerializer ser = new ...
1
vote
1answer
25 views
Detached criteria - how to to specify join conditions
I am trying to retrieve some data from database using Nhibernate detached criteria. The problem is that I dont know how to specify the join conditions in Detached criteria. Please find my code below,
...
0
votes
0answers
18 views
NHibernate query over baseclass not initialize derived class properties
Consider following class structure.
public abstract class Animal
{
public string SomeData { get; set; }
public IList<AnimalProperty> AnimalProperties { get; set; }
public ...
0
votes
0answers
31 views
NHibernate query throws exception
I have pretty simple linq expression:
session.Query<Order>().Where(x => x.States.OrderByDescending(z => z.Date).FirstOrDefault().Name == "2").ToList();
Result: InvalidCastException ...
-1
votes
0answers
14 views
Cant connect PostgreSql 9.2 with MVC 4 application using Fluent Nhibernate
I'm new to Fluent Nhibernate and postgreSQL I need to connect postgrey sql with my asp.net MVC 4 application using fluent Nhibernate and I'm stuck with a problem when I run my app its showing an error ...
0
votes
0answers
19 views
Wrong hash returning from db
I'm using Fluent NHibernate with ASP.NET 3.5 and Oracle 10. Passwords are SHA1 hashed on db. Returned string from db is different from saved before.
This is my hashing code.
public static ...
-2
votes
0answers
28 views
Choosing Non-clustered indices
I have a table wherein the queries fired against this table takes too much time. Records are in millions. The Table has clustered index to Primary key including 5 foreign keys. The foreign keys don't ...
1
vote
1answer
20 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
2answers
21 views
Nhibernate Named SQL Query
Can any body tell me what is wrong with below query Named SQL Query using NHibernate.
As I am getting error - "Error in Named Query : GetSecondReviewIncomeStatements ":
<sql-query ...
0
votes
0answers
16 views
Can we do query base on a self-made property in NHibernate?
We have a class like this:
namespace Test
{
public class UnitConsumerConnection
{
public UnitConsumerConnection()
{
Consumers = new List<Consumer>();
...
0
votes
1answer
35 views
nHibernate batch-size doesn't work
I've got a problem with batch-size in nHibernate(C# - VS 2012).
I set "batch-size" in the collection and in the config, but it doesn't work.
using (var s = OpenSession())
{
using ...
0
votes
3answers
52 views
How to call a method from of a property using Reflection
I'm using nhibernate in a application and I have a mapped model with some relations. Theses relations are mapping with List<T> and I need to pass a entity to a method and call the Any() method ...
0
votes
1answer
24 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
54 views
Unit test fluent nhibernate repository with in memory sql lite - no such table error
I'm trying to write unit tests for a repository pattern usinf fluent nhibernate.
I chosed to use Inmemory sql lite database in order to avoid sql server access (which can be done for integration ...
0
votes
0answers
18 views
NHibernate with Oracle inserts slow
I'm using NHibernate 3.2 with Castle Active Record. I'm looking to implement on Oracle 11g after having successfully used Postgresql and SQL Server.
I'm finding that inserts to Oracle in our app are ...
0
votes
0answers
9 views
Object persisted with NHibernate without ID
Let's say I have a table in my database that looks like:
ID | Value1 | Value2
---+--------+-------
0 | fooooo | 3.1415
1 | baaaar | 6.2830
And I basically want to map these to an object like:
...
0
votes
1answer
30 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, ...
0
votes
1answer
15 views
Session evict and merge for entity update
I found this piece of code:
public virtual void Update(T entity) {
Logger.Debug("Update {0}", entity);
Session.Evict(entity);
Session.Merge(entity);
}
Can you ...
0
votes
0answers
12 views
Querying both a base class and a derived class in a single queryover
So this seems a little complicated on my side, so I'll try and first set the scene as clearly as possible.
[ActiveRecord, JoinedBase]
abstract BaseClass
{
public x;
public y;
}
...
0
votes
1answer
21 views
Unit Testing nHibernate Mappings
I am mapping some table valued functions in nHibernate using HBM files. Our table functions have been changing quite a bit lately, so I want to make sure our mapping files are updated when these ...
0
votes
1answer
54 views
Need to optimize LINQ code using Nhibernate
I 'm new to NHibernate & LINQ. I have a piece of code which I think can be optimized. Please help me to do so.
foreach (var geography in geographyList.OrderBy(x => x.Name))
{
var ...
2
votes
0answers
47 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
25 views
How to set the expectation on SqlDelete() In Nhibernate Mapping
Hello I am creating the application in Nhibernate and I want to execute Stored Procedure. I am successfully able to call the stored procedure But I need to set the expectation on that sql Delete.
I ...
0
votes
0answers
26 views
One-Many via NHibernate Loquacious mapping by code or xml
I want to implement a one-to-many relationship between a person and car, and have CRUD operations on both person and car. Brief CRUD and relationships:
Update
A person has many cars
CRUD ...
0
votes
2answers
30 views
Nhibernate StatelessSession and Lazy Loading
I recently tried to develope a "SessionWrapper". The idea behind it was to be able to switch from a Stateful Session to a Stateless Session easily, with no modifications to the DAOs and the XML ...
1
vote
0answers
24 views
NHibernate - Custom render a column name on SQL
I have two tables, say:
MyTable MyFkTable
--------------------------- --------------------------
Id Numeric(3,0) Id Varchar(3)
Description ...
0
votes
3answers
38 views
Eliminating NHibernate collection type in Domain entity
I have a domain entity that exposes a collection type (Iesi.Collections.Generic.ISet<Idea>) from NHibernate. The class is mapped via NHibernate mapping by code. But I don't like the collection ...
0
votes
1answer
32 views
Changing HQL to Linq?
I have a situation where I was using a Named HQL Query, but now that my DAL has changed, I don't know how to re-do the named query in Linq. I have an entity called a HolterTest, which will be read ...
0
votes
1answer
37 views
Showing related entities when delete
I have a model with some relations mapped with NHibernate and it is working fine, for sample:
public class A
{
public int Id { get; set; }
// other properties
public ICollection<B> ...
0
votes
1answer
38 views
QueryOver to return full tree hierarchy
Given the following entity:
public class Comment
{
public int Id { get; set; }
public IList<Comment> ChildComments { get; set; }
}
I basically want to load the full tree, ie the ...
0
votes
1answer
16 views
Eager loading an optional one-to-one with NHibernate
Consider the following simplified domain:
public class Movie
{
public virtual int Id { get; set; }
public virtual MovieDetail MovieDetail { get; set; }
}
public class MovieDetail
{
...
0
votes
0answers
21 views
Spring.Net scope=“request” + NHibernate ISession + WCF
I've got a project set up using WCF web services, Spring.Net and NHibernate. I'm using Spring for the dependency injection - this creates the Web Service implementation and all child dependencies, ...
0
votes
0answers
8 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
...
1
vote
2answers
26 views
How to use Any operator in NHibernate to select by two parameters?
I have a UserObject that contains ID, GUID, Name and Age.
My function gets a list of objects the contains only ID and GUID, and need to return the UserObject(s) the matches the params. For example:
...
0
votes
1answer
29 views
Not able to delete the foreign key contraint in Nhibernate Mappings
public class ReviewMap : ClassMapBase<Review>
{
public ReviewMap()
{
Table("Reviews");
List(x => x.Objectives, m =>
{
...
-4
votes
1answer
44 views
nhibernate mapping by code troubles [closed]
I have an entity:-
public class Employee{
private List<Employee> subbord = new List<Employee>();
private int id;
private string surname;
public virtual Employee Boss { get; set; }
...
0
votes
1answer
22 views
NHibernate SQL server connection pooling?
I am attempting to speed up some web service calls and suspect opening many NHibernate connections is the problem. I am aware that opening a new connection to SQL server is very time consuming and ...
0
votes
2answers
41 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
1answer
18 views
Nhibernate and inheriting mapping-by-code
I have two classes, one inheriting from the other. The first shows a summary view of data (4+ columns) and the child shows a detail view (40+ columns). Both classes are accessing the same table and ...
1
vote
1answer
28 views
How to use sequence as default value for ID in NHibernate?
We have a table mapped in Fluent NHibernate with an Id generated by a Hilo sequence.
this.Id(x => x.Id).GeneratedBy.SeqHiLo("seq_hp", "1000");
We now need to specify a Default value on the Id ...
2
votes
1answer
24 views
NHibernate 'Category' Child/Parent mapping (XML)
I'm trying to get NHibernate (3.3.1) to load a recursive parent/child category relationship.
public class Category
{
public virtual int Id { get; set; }
public virtual bool IsActive { get; ...
0
votes
0answers
24 views
nhibernate bidirectional one-to-one using bags
I am trying to map a legacy bidirectional one-to-one with shared PK using 2 bags. One end of the relation can be null.
The reason i am doing this is for performance consideration (mostly to provide ...

