NHibernateCouchbaseCacheSample.Models.BeerRepository.FindAll C# (CSharp) Метод

FindAll() публичный Метод

public FindAll ( ) : IList
Результат IList
        public IList<Beer> FindAll()
        {
            return FluentSession.GetCurrentSession().CreateCriteria<Beer>().SetCacheable(true).SetCacheMode(CacheMode.Normal).List<Beer>();
        }