ASP.NET Core MVC初学者です。タイトルの通り、スキャフォールディングができません。
以下のコマンドを実行すると、

dotnet ef dbcontext scaffold "Server=.;Database=testdb;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -o Models

以下のエラーが発生してしまいます。

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

SQLサーバー自体は建っていて、Visual StudioからでもSQL Server オブジェクト エクスプローラーからではデータテーブルを閲覧できます。データテーブル名も"testdb"で正しいはずです。どなたかエラーの原因のわかる方いらっしゃいましたらご教示ください。