This allows Views, and custom table types to be connected to models in SqlServer. Fixes #2529
@@ -174,7 +174,7 @@ class Sqlserver extends DboSource {
if ($cache !== null) {
return $cache;
}
- $result = $this->_execute("SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE'");
+ $result = $this->_execute("SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES");
if (!$result) {
$result->closeCursor();