NHibernate is a mature, open source object-relational mapper (ORM) for the .NET framework.
0
votes
0answers
13 views
NHibernate entity not updated after adding child element
I have an entry that contains a list of comments as seen in the mapping file bellow.
My scenario:
I add a new comment for a given entry (as seen in SaveComment method) and commit the changes
...
0
votes
0answers
7 views
Using Nhibernate Spatial to order results by distance, how do I add the distance to my returned collection?
so I am querying SqlServer 2008 data with a Geography Field (Point) using Nhibernate and the Nhibernate.Spatial tools like so:
var projection = SpatialProjections.Distance<MyObject>(x => ...
0
votes
0answers
17 views
Commit nHibernate transaction in background in ASP.NET application
Is it possible to commit a transaction in the background while already returning the view to the user when using nHibernate in an ASP.NET MVC application?
So upon reaching "ActionExecuted", which is ...
0
votes
1answer
24 views
NHibernate SqlException “Value cannot be null”
When I'm trying to save an object, it threw ADOException "Could not save object". Resulted SqlCommand is null. Under it, there's another exception caught by internal process;"Value cannot be null". I ...
1
vote
1answer
25 views
LINQ Any method breaks NHibernate initialization
I have a wired problem in my ASP.NET MVC application using NHibernate.
There is a virutal method named IsLeaderBanker(IbEmployee banker) in my domain model. The impelementaion is like this:
public ...
1
vote
0answers
33 views
EF vs Nhibernate Merge Disconnected Object Graph
I just started a new project a few weeks ago and decided to give EF Code First a try,
I used NHIbernate before and i loved the idea of having an ORM out-of-the-bow from MS, and so far it's been great ...
1
vote
0answers
28 views
Nhibernate threading with WPF databinding
How should I do nhibernate threading given the following facts:
nhiberante is not thread safe
nhibernate entities are databound to a WPF UI, so we must use the UI thread.
Some nhibernate queries are ...
0
votes
1answer
25 views
How to handle related objects in your business layer (asp.net mvc + nhibernate)
Im designing an application from the ground up. I do this as a study object to get my coding skills better and better. In this application I have two entities:
Countries
Cities
Adding a country ...
0
votes
1answer
23 views
How do I check the NHibernate version?
I'm supposed to start working on a project written in ASP.NET MVC2, using NHibernate. I'm more familiar with Entity Framework.
Is there a way I can check which NHibernate's version the application ...
0
votes
1answer
17 views
fluent nhibernate delete cascade
I'm using fluent nhibernate, I would turn on delete cascade. but I do not work. it only deletes the foregin key.
The following configuration fluent nhibernate:
public virtual void ...
0
votes
1answer
21 views
HQL select where object1.list<object2>[0…n].Id = givenId
I have a class Transaction, among its parameters is List of Tag Tags.
I want to select List of Transaction by TagId?
something like this(my query is obviously wrong at the WHERE clause...:
...
1
vote
1answer
30 views
Is there a way for NHibernate to inform query cache from views to be invalidated?
I made a view out of joined tables, and I wanted its 2nd level query cache to be invalidated when the view's base table(s) are updated(within ORM context). The view is mapped like a table on ...
0
votes
0answers
18 views
NHibernate multi column ManyToOne mapping with Mapping By-Code
I am trying to convert my FluentNHibernate mappings to NHibernate Mapping By-code using NHibernate 3.3.3. The goal is to upgrade to NHibernate 3.3.3 and to cut down on the number of assemblies being ...
0
votes
2answers
25 views
NHibernate: Projecting child entities into parent properties throws an exception
I have the following parent entity Department which contains a collection of child entities Sections
public class Department
{
private Iesi.Collections.Generic.ISet<Section> _sections;
...
0
votes
1answer
25 views
Fluent Wrapper for Nhibernate Fetch ThenFetch
I have a generic repository with a Query Method that returns IQueryable. In my calling code I can then do something like this
_repository.Query<MyClass>(x=>x.EntityId == ...
0
votes
1answer
11 views
Distinct over one column with value comparing on another column ICriteria NHibernate
I have table and object called Person. I have problem to create a distinct (over column "lastname") criteria. I want to get only the oldest Person with distinct lastnames.
For example i have ...
3
votes
3answers
72 views
Is a ORM the right tool to use for migrating data?
Background
We are in the process of upgrading a legacy import tool, what it does is it moves data from one database attached to SQL Server to a 2nd database on the same server with a different schema ...
1
vote
1answer
35 views
NHibernate: Save Object1 with List<Object2> into database
I have problem with my Nhibernate app.
I have class called Rozmiar, and class called Symbol.
Symbol contains List as property.
How can I save it into database using NHibernate?
My code (doesn't ...
0
votes
1answer
33 views
Rewrite SQL to FluentNHibernate
I'am using NHibernate 3.3.1.4000 and FluentNHibernate 1.3.0.733 with SQL Server 2012 and I need to rewrite query to IQueryOver to do this calculation on server side without stored procedure calling.
...
1
vote
0answers
32 views
Changes in NHibernate 3.3
I'm extending NHibernate.Spatial to use Oracle Spatial Dialect.
It used to work with NHibernate 3.1. Nowadays I'm trying to upgrade to NHibernate 3.3 however after fixing the compilation problems I ...
0
votes
0answers
56 views
Handling foreign keys relationships in javascript to asp.net-mvc communication
I am working on a ASP.net MVC 4 application that is used to take menu orders, store them in a database and display them later.
That domain model that represents the menu consist between others the ...
1
vote
1answer
67 views
Best practice to connect DAL to UI layer
I've always been told that designing your application using 3 tiers model is the best practice to separate the data layer and the business logic layer from the presentation.
But when I come to use ...
0
votes
1answer
49 views
Ignore field in NHibernate merge
I have mapped ModifiedDate in my NHibernate configuration for most of my entities.
Each entity inherits this:
public interface IAuditable {
string ModifiedBy { get; set; }
DateTime ...
0
votes
1answer
23 views
Bind List of objects to datagridview with Fluent NHibernate - ToString override
I have problem with displaying List of my objects like datasource in datagridview. I have class with few properties. Two of them are another objects.
I've tried to override ToString() in my classes, ...
0
votes
1answer
25 views
NHibernate - Version as DateTime, generated in DB
I'm trying to assign a version column to my table and I want the version to be generated from the DB (getDate()). My mapping looks like that:
Version(x => ...
3
votes
2answers
28 views
Order parent object list by child list attribute
I want to sort an object list in C# by LINQ, I want to order this list by a child list with a certain attribute: The class structure based on nhibernate, all Attributes are public virtual.
...
0
votes
1answer
15 views
NHibernate second level cache not working when using composite primary key?
What's the proper way to use a composite primary key in NHibernate so it will be amenable for caching?
I isolate the composite primary key similar to the last part of this post: ...
-2
votes
1answer
53 views
Nhibernate querys blocked by IT dept, but ADO go through?
The IT group did huge changes over the weekend that killed two of my apps, I'm trying to figure out why some sql gets through and others don't it looks like,
C# asp.net NHibernate queries are ...
0
votes
2answers
102 views
Take Top(X) of each grouped item in LINQ
I'm trying to take the Top(X) recors for every unique item in a column.
Example:
Inspections
InspectionId | RestaurauntName | InspectionDate
------------------------------------------------
1 ...
0
votes
1answer
18 views
Flexibility with eager loading huge object graphs, NHibernate HQL TOP N in SQL
I need to pass POCO Domain objects (eagerly loaded). Having analyzed both Entity Framework and NHibernate, I can't find a solution!
Analyzing the underlying SQL and queries by NHibernate, I ...
-1
votes
1answer
22 views
NHibernate caching and lazy loading providing unwanted results
I have been experiencing some major caching and lazy loading problems with NHibernate using C# and ASP.NET. It was not until we enabled caching that this begun. In many situations we have to write ...
0
votes
2answers
51 views
How to configure Fluent NHibernate explicit left/inner join for an association&
First, some code to explain my config:
public class OrdersSessionFactoryCreator
: ISessionFactoryCreator
{
public NHibernate.ISessionFactory Create()
{
var ret =
...
0
votes
1answer
16 views
Alternative mappings for different dialects
I have a problem that some dialects don't support Xml.
Namely SQLite used for in-memory db unit tests. I have a solution, I can alter the mapping to use a custom type:
Mapping line from ClassMap ...
1
vote
0answers
16 views
Unit Of Work side effects could be fixed with TransactionScope, but it is not available with MySql.Data
I'm using NHibernate with MySql.Data ADO connector.
I have Dao classes with CRUD methods: Create, Update, Delete.
These methods open their own NHibernate transactions and commit them.
Now I am ...
1
vote
0answers
36 views
Adding Child Models at Runtime at the click of a link or button in ASP.NET MVC
I have been working on a MVC application for the past couple of weeks and I am currently stumped with a problem I have. The application has two entities
Application
Applicant
The Application can ...
0
votes
1answer
47 views
NHibernate JoinQueryOver
Calling all NHibernate gurus out there!
If any one of you brainy folks could help me with the following conundrum I'd be most grateful:
I have some entities that describe RSS feeds from various ...
1
vote
1answer
23 views
How do I work around the N+1 issue with one-to-one mapping in NHibernate?
I have a Task entity which has a preceding and following task:
namespace OneToOneIssue.Domain
{
public class Task
{
public virtual Guid Id { get; set; }
public virtual string ...
2
votes
1answer
14 views
NHibernate hbm mapping collection whith where condition on boolean property
I have an entity A with a bool property (lets call it BProp).
In a second entity there is a bag mapping of A elements with a where condition on BProp like this:
<bag name="MyBag" ...
-1
votes
1answer
29 views
C# Spring with Fluent NHibernate multiple databases issue [closed]
I'm trying to build a multi database (oracle, SQL server and Informix) application and I need to do it with Spring.net and Fluent NHibernate.
Anyone knows a good newbie tutorial? I need to know how ...
0
votes
0answers
19 views
NHibernate: Using a col other than main “Id” column in an HQL Join
Wondering if there's a way to do this? I have data in another table (ref'd property) related to the parent/JOIN subject table by a col other than the parent's main Id col, but the translated SQL ...
0
votes
0answers
17 views
attaching unmapped list(self list) via n-hibernate xml
I have a class and mapping as below.
public class A
{
private ICollection<A> masterListForA;
public int A1 { get; }
public int A2 { get; }
private readonly string _A1;
...
2
votes
2answers
46 views
fluent nhibernate copy a full entity
how can I best copy an entity instance in fluent nhibernate 3.3.1;
I read an object out of the database, I got an object, now I change some values of this object. This object with little changes want ...
0
votes
2answers
53 views
LINQ group by date - include empty days WITHOUT using join
Using C#, NHibernate, NHibernate to LINQ. Using NHibernate to LINQ, I do not have the JOIN functionality. I can not use QueryOver either.
I have a LINQ query that counts the amount of Leads and ...
0
votes
1answer
22 views
CreateCriteria sorting on aggregate function sum
SELECT
[ProductErpIdentifier],
[PriceValue],
[ManufacturerProductIdentifier],
SUM([QuantityOrdered]) as [QuantityOrdered]
FROM
[eCommerceDev].[dbo].[OrderItem]
GROUP BY
...
2
votes
0answers
59 views
Container not disposing transient components
I'm not sure whether this is more of an NServiceBus issue, a Windsor issue, or just my own stupidity problem - but I'm experiencing a memory leak which seems to point to lots of transient components ...
0
votes
1answer
18 views
Fluent NHibernate with MySQL with Mono and ASP MVC 3
I'm attempting to configure Fluent NHibernate with Automapping for MySQL and I've run into a problem. I've googled quite a bit and tried many different things, but haven't found a solution yet.
...
-1
votes
0answers
25 views
convert SQL to NHibernate 3 syntax query [closed]
As I am trying to learn NHibernate 3. I am finding it a bit challenging to write complex queries. I would like to convert the below SQL to its equivalent QueryOver<>, Linq or some other syntax ...
0
votes
1answer
45 views
FluentNHibernate - Mapping a class to multiple tables
Sorry for a lengthy question. But it is worth giving all the details so please bear with me through to the end.
I'm working against a legacy database over which I do not have much control. I want to ...
0
votes
0answers
13 views
Querying for various entities with nHibernate 2.1.2, and I'm not sure this is the correct behavior
I'm executing the following HQL:
select entity
from @entityType entity
join entity.StationPointBegin spbegin
where spbegin.Line = ?
and entity.CurrentIndicator= 'Y'
order by ...
2
votes
1answer
25 views
NHibernate query cache not working when using join
When this gets called two times, the second invocation doesn't re-run the query on the database, the query caching works.
var query = from p in session.Query<Product>()
where ...
