sql sugar
Posted wood132
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql sugar相关的知识,希望对你有一定的参考价值。
事务
using (var db = new SqlSugarClient(new ConnectionConfig() { ConnectionString = Config.xxx, DbType = SqlSugar.DbType.mysql })) { try { db.Ado.BeginTran(); var count = db.Updateable(flow).ExecuteCommand(); if (count != 1) throw new Exception(); db.Ado.CommitTran(); return 1; } catch (Exception) { db.Ado.RollbackTran(); return 0; } }
以上是关于sql sugar的主要内容,如果未能解决你的问题,请参考以下文章