服务器故障转移后 TransactionScope 是否仍在运行,服务器故障转移时数据库如何自动回滚更改?
作者:Abd Al-Rahman Odeh 提问时间:11/9/2023
这是我的代码 using (var context = DbContextCreator.Create()) { var transactionOptions = new Transactio...
实体 问答列表
作者:Abd Al-Rahman Odeh 提问时间:11/9/2023
这是我的代码 using (var context = DbContextCreator.Create()) { var transactionOptions = new Transactio...
作者:GasTorrent 提问时间:11/10/2023
我正在尝试加入所有符合条件的回复 Replies.ReplyTo == Ticket.Id 在 reportInfo 对象中。但是在执行请求时: 错误信息: System.InvalidOpera...
作者:Unorthodox 提问时间:11/11/2023
modelBuilder.Entity<Vehicle>() .HasOne(vehicle => vehicle.Driver) .WithOne(driver => driver.Vehicl...
作者:Pavel 提问时间:11/11/2023
我的后端是一个 Web API,前端是一个 Angular 应用程序。 我们的前端允许用户在对 API 的单个 HTTP POST 调用中编辑 Parent 对象上的多个字段以及子集合。 这很重要...
作者:NedaM 提问时间:11/11/2023
我有两种模型:父模型和子模型 public class Parent { public int ID { get; set; } public string Name{ get; set; } ...
作者:Musa AKYUZ 提问时间:11/11/2023
我在核心层中实现了 Repository 和 UnitOfWork 模式: public class Repository<TEntity, TContext> : UnitOfWork, IRep...
作者:DODO 提问时间:11/12/2023
我有两个实体 CustomSupplier,BlockedPn 与 ManyToMany 关系。 我正在使用 select2 从 CustomSupplier 实体中选择值。 当我从$supplie...
作者:lonix 提问时间:11/12/2023
我有一个搜索实体的方法,并可以选择加载导航属性: public async Task<Person?> FindPerson<TProperty>(string name, params Expre...
作者:Herman 提问时间:11/12/2023
这个问题在这里已经有答案了: EF Core 3,优化大量 Include/ThenInclude (4 个答案) 多次使用 Include() 时,实体框架代码很慢 ( 5 个答案) 10天前关闭。...
作者:lonix 提问时间:11/12/2023
假设我执行查询并投影到匿名类型中;这将在服务器上执行评估: var people = await context .People .OrderBy(x => x.Name) .Select(x...