Arkadaşlar iyi akşamlar login girişi yapmak istiyorum bilgileri sql den çekiyorum bu işlemmi methodda yapıcam kodlarım böyle ancak hata alıyorum ne yapmalıyım hata şu(program does not contain a static 'main' method suitable for an entry point)
`namespace AccountingProgram
{
class DataBase
{
public SqlConnection connection = new SqlConnection(@"Data Source = DESKTOP - 97S6E8G; Initial Catalog = AccountingProgram; Integrated Security = True");
public SqlCommand command;
public SqlDataReader sdr;
public void LogIn(string userName, string password)
{
string query = "Select * From User Where UserName='"+userName+"' And Password='"+password+"'";
command = new SqlCommand(query,connection);
connection.Open();
sdr = command.ExecuteReader();
if (sdr.Read())
{
MessageBox.Show("HOŞGELDİNİZ");
}
else
{
MessageBox.Show("HATALI");
}
connection.Close();
command.Dispose();
}
}
}`
private void button1_Click(object sender, EventArgs e)
{
string userName = textBox1.Text;
string password = textBox2.Text;
DataBase dataBase = new DataBase();
dataBase.LogIn(userName, password);
}