Tôi đang cố gắng sử dụng thư viện SQLClient trong ASP.net Core nhưng dường như không thể làm cho nó hoạt động. Tôi tìm thấy bài viết này trực tuyến hướng dẫn cách thiết lập nhưng nó không hoạt động với tôi: http://blog.developers.ba/using-classic-ado-net-in-asp-net-vnext/
Tôi có một gói ứng dụng bảng điều khiển đơn giản. Project.json của tôi trông như thế này:
{
"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"
}
}
}
}
Và tôi thử đoạn mã sau:
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();
}
}
}
Nhưng gặp các lỗi sau:
Có ai khác làm việc này không?