14.6.21

installer gnome

$ sudo tasksel install ubuntu-desktop

$ sudo apt install tasksel

1.6.21

EntityFramework DbContext SQL

var customerList = db.Customers.SqlQuery("Select * From Customers").ToList<Customers>();

int customerId = db.Database.SqlQuery<int>("Select customerId From Customers where customerName='MAHDI'").FirstOrDefault<int>();

int result = db.Database.ExecuteSqlCommand("delete from Customers where customerId = 100");