Как риа-сервисы могут делать такие вещи?
using (SqlConnection connection = new SqlConnection(connectionString))
{
string TSQL="update products set price=price*1.03 where category='computer books'";
SqlCommand command = new SqlCommand(TSQL, connection);
command.Connection.Open();
command.ExecuteNonQuery();
}
Спасибо, Марк