Bosphorus.Dao.Demo.NHibernate.General.ExecutionList.Extension.LinqProvider.Decode_3Fallback C# (CSharp) Метод

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

public Decode_3Fallback ( ) : IQueryable
Результат IQueryable
        public IQueryable<int> Decode_3Fallback()
        {
            IQueryable<int> result = from model in customerDao.Query() select model.Name.Decode("Onur", 1, "Oğuz", 2, "Devrim", 3, -1);
            return result;
        }
    }