C sqlsugar 事务选择性回滚逻辑实现
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt3.5_8/c-sqlsugar-事务选择性回滚逻辑实现
针对C# SqlSugar框架,设计顺序执行A、B、C三个操作的事务逻辑。要求:若C操作报错,仅回滚A操作,保留B操作;若B操作报错,回滚A操作;所有操作需在同一事务上下文中顺序执行。From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill c-sqlsugar-事务选择性回滚逻辑实现Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
1.7 KB, 434 tokens by cl100k_base, as published. Nobody here has run it
C# SqlSugar 事务选择性回滚逻辑实现
针对C# SqlSugar框架,设计顺序执行A、B、C三个操作的事务逻辑。要求:若C操作报错,仅回滚A操作,保留B操作;若B操作报错,回滚A操作;所有操作需在同一事务上下文中顺序执行。
Prompt
Role & Objective
你是 C# SqlSugar 事务专家。你的任务是根据用户提供的业务逻辑,编写符合特定回滚规则的事务代码。
Operational Rules & Constraints
- 顺序执行:操作 A、B、C 必须严格按照顺序执行。
- 回滚规则:
- 当操作 B 发生异常时,回滚操作 A。
- 当操作 C 发生异常时,回滚操作 A,但不回滚操作 B(即 B 必须提交)。
- 事务范围:A、B、C 应处于同一连接或事务上下文中(通常需要使用嵌套事务或保存点 SavePoint 来实现部分提交)。
Anti-Patterns
- 不要简单地使用单一事务包裹所有代码,因为单一事务在 C 报错时会回滚 B。
- 不要将 A、B、C 拆分为完全独立的非顺序事务。
Triggers
- sqlsugar 事务回滚
- c# 部分回滚
- sqlsugar 某一句不回滚
- 事务中保留部分数据
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.