在uniqueidentifier选择之后使用dapper更新多个记录

时间:2017-01-25 08:30:21

标签: c# dapper

我有从数据库加载的记录数,我想在返回之前更新set couple值。唯一的主要要求我不希望多个命令逐个更新每个记录。

请注意我的ID是GUID(uniqueidentifier)

到目前为止,我的代码为

public IEnumerable<Person> GetUnprocessedPeople(int batchSize)
    {
        List<Queue_ImportQueue> list;
        using (IDbConnection db = OpenedConnection)
        {
            string peopleList = $"SELECT TOP({batchSize}) * FROM [dbo].[Person]";

            list = db.Query<Person>(peopleList).ToList();
            using (IDbTransaction transactionScope = db.BeginTransaction(IsolationLevel.Serializable))
            {
                string updateQuery = $"UPDATE [dbo].[Person] SET Created = GETDATE() WHERE Id ='@ids'";

                try
                {
                    db.Execute(updateQuery, new { Id = list.Select(x => x.Id) }, transactionScope);
                    transactionScope.Commit();
                }
                catch (Exception ex)
                {
                    transactionScope.Rollback();
                    throw;
                }
            }
        }
        return list;
    }

1 个答案:

答案 0 :(得分:1)

好的解决方案非常简单。 不需要特定的铸造。 只是确保所有论据都正确无误。 所以解压缩了我的问题:

            string updateQuery = $"UPDATE [dbo].[Person] SET Created = GETDATE() WHERE Id ='@Ids'";

           ...

            db.Execute(updateQuery, new { Ids = list.Select(x => x.Id) }, transactionScope);