1
vote
1answer
53 views

Does not get exception when collection is empty with Sum method and Nhibernate

I have a IQueryable with NHibernate and I would like to have an linq query to sum an specific column, but, when my condition on Where method give me an empty result I do not want to get an exception, ...
1
vote
0answers
78 views

QueryOver : Case Sensitive Like or Equals

There are many posts online and on stack overflow talking about solving the issue of case insensitive likes. I guess this is due to these peoples database being by default case sensitive. Sql server ...
0
votes
1answer
68 views

Execute IQueryable on DB Layer and return a new One (eraly execute)

I wnat that my DB Layer Returns a IQueryable of its DTO Objects. I use NHibernate wich has support for Linq. But the problem is, i've to close the session when my DB Layer is leaved, and so the ...
0
votes
2answers
140 views

NHibernate Queryable not allowing string comparison

I have the following code var results = repository.GetItemsAsQuery<User>().Where( user => user.EmailAddress.Equals(emailAddress, ...
0
votes
2answers
296 views

NHibernate + IQueryable access subtype property in where

I've got problem with NHibernate v3.2.0, and following query: class DocumentBase {} class Requisition: DocumentBase {} class Order: DocumentBase {} Repository.GetAll<DocumentBase>() ...
1
vote
1answer
223 views

Cannot convert expression type 'NHibernate.IQueryOver<T,T>' to return type 'System.Linq.IQueryable<T>'

I'm sure I'm doing this wrong, but I've been picking at it for a while. I'm trying to implement an IRepository Find method, and I just can't seem to work out how. Any help would be greatly ...
0
votes
2answers
151 views

Convert/Embed one expression tree into another

EDIT: More detailed question. I am working on batched operations in nHibernate, specifically for In queries to overcome the 2100 parameter limit size in SQL Server. For this, I have created a class ...
1
vote
1answer
277 views

IQueryable<T> Question

Currently I return everything from my Repo as a List. I am looking to change these to IQueryable just so people can refine the results and not suffer from another sql request(I am using nhibernate). ...
3
votes
3answers
484 views

What would you put into the unit test of a repository class (data access layer)?

I'd like to write a unit test for my data access layer to make sure that everything works allright in it. The question is, what kind of things should I put into the tests? The DAL is a static ...
2
votes
1answer
276 views

Update records Nhibernate and Iqueryable

Let say if i want to update all rows of a table having some status with another status.I am using a Repository pattern with Nhibernate .I have a method in my repository to get me an ...
8
votes
3answers
242 views

C# strange lambda behavior

Could someone point out why this could be happening: I am using NHibernate and the Linq provider for it. The code that fails is listed here: var sequence = session.Query<T>(); var ...
0
votes
1answer
2k views

Nhibernate 3.0 LINQ: Problem returning to IQueryable (non generic version) - doesn't allow ToList()

I am using the latest Nhibernate and i have a linq query to return just 1 column. so I can't use for example IQueryable as there is no entity class - i am returning only 1 column. But return to ...
5
votes
3answers
409 views

How do I keep an IQueryable<> within a transaction using the repository pattern?

According to NHProf, the use of implicit transactions is discouraged: http://nhprof.com/Learn/Alerts/DoNotUseImplicitTransactions However, NHibernate LINQ returns an IQueryable<> when reading ...
0
votes
4answers
171 views

Sorting collection and sub-collection at the same time

I have an IQueryable<Product> that needs to be sorted by Name. Each Product has an IQueryable<Category> that also needs to be sorted by Name. I'm having a hard time expressing this in ...
0
votes
2answers
681 views

IQueryable contains any of string array

I am not shore why IQuerable limits me when I try to search database for data containing string from an array. objectFactory.Resolve<IUserDao>().Query. Where(t => ...
0
votes
1answer
4k views

nHibernate IQuearable<T>

I have seen many nice things coming up for ASP.NET 4 and Silverlight 3. The best thing i've seen is the DomainDataSource where one can create a nice separation of Business and Data Layers and present ...
6
votes
2answers
3k views

NHibernate testing, mocking ISession

I am using NHibernate and Rhinomocks and having trouble testing what I want. I would like to test the following repository method without hitting the database (where _session is injected into the ...