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);
}
Expression<Func<T, bool>>
NHibernate で式を使用したい。どんな手掛かり?