Ejemplo n.º 1
0
        public IEnumerable <T> QueryInIds <T, K>(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.GetListInIds <T, K>(Connection, Name, Ids, sort, transaction, commandTimeout, buffered));
        }