vote up 2 vote down star
1

I have read the very good blog post of Rob Conery Crazy Talk: Reducing ORM Friction
How can I generalize this interface so I can implement it with NHibernate?

using System;  
using System.Collections;  
using System.Linq;  
using System.Linq.Expressions;   


public interface IRepository<T>   
{  
     IQueryable<T> GetAll();  
     PagedList<T> GetPaged(int pageIndex, int pageSize);  
     IQueryable<T> Find(Expression<Func<T, bool>> expression);  
     void Save(T item);  
     void Delete(T item);  
}

I want to use the Expression<Func<T, bool>> expression in NHibernate. Any clue?

flag

77% accept rate

3 Answers

vote up 3 vote down check

Look at LINQ to NHibernate. Kyle Baley has a great overview of it

link|flag
vote up 0 vote down

You'll need to walk the expression tree and build your Criteria.

link|flag
vote up 1 vote down

See this question, it's very similar and it already has the relevant answers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.