मैं ASP.net कोर में SQLClient लाइब्रेरी का उपयोग करने की कोशिश कर रहा हूं, लेकिन यह काम नहीं कर पा रहा है। मैंने इस लेख को ऑनलाइन सेटअप करने की सलाह दी, लेकिन यह मेरे लिए काम नहीं कर रहा है: http://blog.developers.ba/using-classic-ado-net-in-asp-net-vnext/
मेरे पास एक सरल कंसोल एप्लिकेशन पैकेज है। मेरी परियोजना। इस तरह दिखता है:
{
"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();
}
}
}
लेकिन निम्नलिखित त्रुटियां प्राप्त करें:
किसी और को यह काम मिल गया?