ria服务是否有像sqlclient SqlCommand这样的东西来执行T-SQL?

时间:2010-08-08 06:00:14

标签: wcf-ria-services ria

ria服务将如何做这种事情?

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();
}

谢谢,Mark

1 个答案:

答案 0 :(得分:0)

您需要获取具有计算机书籍类别的所有产品实体,然后更新它们的价格并将更改保存到数据库。