بله میشه
شما باید توی SqlCommand این کد رو بنویسی
// Backup database
SqlCommand scom = new SqlCommand("backup database dbName to disk='E:\dbname.Bak'", myConeection);

// Restore database
SqlCommand scom = new SqlCommand("restore database dbName from disk='E:\dbName.Bak'", myConnection);