суббота, 20 июля 2013 г.

EF (Entity Framework) Sending raw commands to the database

using (var context = new BloggingContext())
{
    context.Database.SqlCommand(
        "UPDATE dbo.Blogs SET Name = 'Another Name' WHERE BlogId = 1");
}

Комментариев нет: