コード例 #1
0
        public static List <T> queryList <T>(ITransactionCustom transaction, ICommandCustom command)
        {
            EntityToCommandCustom fwEntityToFWCommand = new EntityToCommandCustom(command.DatabaseTypeCustom);

            return(fwEntityToFWCommand.queryList <T>(transaction, command));
        }
コード例 #2
0
        public static List <T> queryList <T>(string connectionString, ICommandCustom command)
        {
            EntityToCommandCustom fwEntityToFWCommand = new EntityToCommandCustom(command.DatabaseTypeCustom);

            return(fwEntityToFWCommand.queryList <T>(connectionString, command));
        }