using Microsoft.SqlServer.Management.Common;
using Microsoft.SqlServer.Management.Smo;
string sqlConnectionString = @"Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=MAVEDUCATION;Data Source=DEVELOPER04-VM2\SQL2017";
SqlConnection conn = new SqlConnection(sqlConnectionString);
Server server = new Server(new ServerConnection(conn));
server.ConnectionContext.ExecuteNonQuery(_q);
Artık bağlantı açma kapamalar vs ile sorunlardan kurtaran Microsoft.SqlServer. geliştirmesi 4.6.2 framework ve üstünde çalıştığını saptadım.