0

私はマウイ ブレイザーを試しています。アプリケーションを SQL サーバー データベースに接続したいと考えています。したがって、単純な SQL 接続文字列を使用しました。「通常のWindowsマシン」でテストすると問題はありませんが、Androidエミュレーターでテストしたい場合は機能しません。

「scaffold-DBContext ..」コマンドを使用し、生成されたメソッドに接続文字列を含めました。

...
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    {
        if (!optionsBuilder.IsConfigured)
        {
             var sqlConnectionString = ...;
             //#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see http://go.microsoft.com/fwlink/?LinkId=723263.
            optionsBuilder.UseSqlServer(sqlConnectionString);
        }
...

Androidエミュレーターで動作するにはどうすればよいですか? 「OnConfiguring」メソッドのブレークポイントは (Android では) ヒットさえしません。

(そして、誰かがなぜそれが機能していないのか知っていますか?)

事前にどうもありがとうございました

4

0 に答える 0