Esempio n. 1
0
        public async Task <List <TEntity> > FindAsync(string where)
        {
            return(await Task.Run(() => {
                _table.sqlWhere(where);
                _table.getDataTable();

                if (_table.dataTable == null)
                {
                    return null;
                }

                return _table.TableAsList();
            }));
        }