I have table with 6+ million rows and need to select.When the this was ind development our dev database has thousands of records, not millions and the following was fine:
In a (web) application I\'ve implemented the MVP pattern for seperation of core concerns. My presenters directly query the database using LINQ-to-NHibernate, or sometimes they use query objects when t
I have a case where I need to load about 10 000 objects from database. The data model is something like this:
I\'m working on a project where we are using fluent nhibernate and perform queries on our repository for entities. Often we write queries like this:
First off, I am extremely new with using NHibernate and Fluent NHibernate so it\'s very likely that I\'m making a simple mistake. I jumped right into NHibernate over the last few days using Fluent NHi
Is there a way to select multiple sums at once using Linq to NHibernate? Now I have int? wordCount = (from translation in session.Query<TmTranslation>()
I have two simple entities with one-to-many relationship: public class Customer { public int Id { get; private set; }
Since I felt adventurous the other day I decided compiling ActiveRecord 3 RC 1 with NHibernate 3.2 and see what happens.
I currently have an Enu开发者_如何学Gom being staved as a string in the database. I now what to wuery and filter on this Enum using the Linq Provider for nHibernate but I keep getting exceptions.
I have two classes by Names : Person and Asset by Relation type : One To Many(one person by many asset)