sql >> データベース >  >> RDS >> Sqlserver

Entity Framework は、SQLClient 接続文字列で ApplicationIntent=ReadOnly をサポートしていますか

    これまでに見つけた唯一の方法は、接続文字列名を使用する代わりに、接続文字列を直接使用してコンテキストを作成することです。このようにして、 ApplicationIntent を追加できます .

    string connectionString = string.Format("{0}; ApplicationIntent=READONLY", ConfigurationManager.ConnectionStrings["AppContext"].ConnectionString);
    
    using (AppContext context = new AppContext(connectionString))
    {
        var q = from row in context.table
                select row.id;
    }
    



    1. バキュームされていないPostgresの古いバージョンの行にアクセスすることは可能ですか?

    2. Postgresで抽出された列のリストから値の配列を作成します

    3. ハイブリッドOLTP/Analyticsデータベースワークロード:MySQLデータをClickHouseに複製する

    4. VisualStudio2015からmysqlに接続できません