web-dev-qa-db-ja.com

ASP.NET CoreでSqlClientを使用する方法は?

ASP.net CoreでSQLClientライブラリを使用しようとしていますが、機能しないようです。私はこの記事をオンラインで見つけてセットアップ方法をアドバイスしましたが、私にとってはうまくいきません: http://blog.developers.ba/using-classic-ado-net-in-asp-net-vnext/

シンプルなコンソールアプリケーションパッケージがあります。私のproject.jsonは次のようになります:

{
  "version": "1.0.0-*",
  "description": "DBTest Console Application",
  "authors": [ "" ],
  "tags": [ "" ],
  "projectUrl": "",
  "licenseUrl": "",

  "compilationOptions": {
    "emitEntryPoint": true
  },

  "dependencies": {
    "System.Data.Common": "4.0.1-beta-23516",
    "System.Data.SqlClient" :  "4.0.0-beta-23516"
  },

  "commands": {
    "DBTest": "DBTest"
  },

  "frameworks": {
    "dnx451": { },
    "dnxcore50": {
      "dependencies": {
        "Microsoft.CSharp": "4.0.1-beta-23516",
        "System.Collections": "4.0.11-beta-23516",
        "System.Console": "4.0.0-beta-23516",
        "System.Linq": "4.0.1-beta-23516",
        "System.Threading": "4.0.11-beta-23516"
      }
    }
  }
}

そして、私は次のコードを試します:

using System;
using System.Data.SqlClient;

namespace DBTest
{
    public class Program
    {
        public static void Main(string[] args)
        {
            using (SqlConnection con = new SqlConnection(ConnStr)) {
                con.Open();
                try {
                    using (SqlCommand command = new SqlCommand("SELECT * FROM SAMPLETABLE", con)) {
                        command.ExecuteNonQuery();
                    }
                }
                catch {
                    Console.WriteLine("Something went wrong");
                }
            }

            Console.Read();
        }
    }
}

ただし、次のエラーが発生します。

enter image description here

他の誰かがこれを機能させましたか?

56
Rob McCabe

チュートリアルのこの部分を見逃しているかもしれません。

System.DataとSystem.Data.SqlClientを参照する代わりに、Nugetから取得する必要があります。

System.Data.CommonおよびSystem.Data.SqlClient。

現在、これにより、project.json –> aspnetcore50セクションにこれら2つのライブラリへの依存関係が作成されます。

"aspnetcore50": {
       "dependencies": {
           "System.Runtime": "4.0.20-beta-22523",
           "System.Data.Common": "4.0.0.0-beta-22605",
           "System.Data.SqlClient": "4.0.0.0-beta-22605"
       }
}

System.Data.CommonとSystem.Data.SqlClientをNuget経由で取得してみて、上記の依存関係が追加されるかどうかを確認してください。欠落System.Runtime。

107
MikeDub