Example #1
0
        public IEnumerable <T> QueryColInIds <T, K>(Action <ColSelect <T> > ColSelector, Expression <Func <T, object> > expression, IEnumerable <K> Ids, IList <ISort> sort, DbTransaction transaction, int?commandTimeout, bool buffered) where T : Cissy.Database.IEntity
        {
            PropertyInfo propertyInfo = ReflectionHelper.GetProperty(expression) as PropertyInfo;
            string       Name         = propertyInfo.Name;

            return(_dapper.GetListColInIds <T, K>(Connection, ColSelector, Name, Ids, sort, transaction, commandTimeout, buffered));
        }