Bosphorus.Dao.Demo.NHibernate.General.ExecutionList.Extension.LinqProvider.Decode_2 C# (CSharp) Method

Decode_2() public method

public Decode_2 ( ) : IQueryable
return IQueryable
        public IQueryable<int> Decode_2()
        {
            IQueryable<int> result = from model in customerDao.Query() select model.Name.Decode("Onur", 1, "Oğuz", 2);
            return result;
        }