这就是我想要实现的目标:
我需要在不同数据库(相同引擎)中的表上执行插入操作,然后“本地”插入,然后对于每个插入的操作,我必须执行一个循环以插入子表。
场景是这样的:Person
, Contract
, PayOrder
(local), PayOrder
(db2), Contracts_PayOrder
. (代码本身不是英文的,但我添加了注释)
对于每个contract
拥有的person
,我需要创建一个PayOrder
(在 2 个不同的数据库中),其值是所有合同的总和,然后再次,对于每个合同,我必须插入Contracts_PayOrder
我为此创建了 2 个不同的 .edmx。这就是我在尝试SaveChanges
使用 LocalDB 时得到的结果:(阅读代码注释)
System.Data.SqlClient.SqlException:不允许新事务,因为会话中还有其他线程在运行。
这是我的尝试:
using (RegistroContratoEntities dbs = new RegistroContratoEntities())
{
//Get list of active PERSONS
IQueryable<Credor> credorList = dbs.Credores.Where(c => c.Status == true);
foreach (Credor credor in credorList)
{
//Keep the payOrder Id
decimal? renavamBoletoId = null;
//Get list of contracts for that person
IQueryable<Contrato> contratosCredor = dbs.Contratos
.Where(c => c.Credor_Id == credor.Id &&
c.DataRegistro.Value.Month == pMesReferencia &&
c.Status == true);
if (contratosCredor.Count() > 0)
{
// Gets the total cost of the PayOrder
decimal valorBoleto = contratosCredor.Count() * 11;
//
// Creates the PayOrder (One for each person) on the external db
//
using (RenavamEntities dbren = new RenavamEntities())
{
BoletoRenavam boletoREN = new BoletoRenavam();
boletoREN.Arquivo = null;
boletoREN.BoletoSituacao_Id = CodBoletoSituacao.Ativo;
boletoREN.ConvenioBoleto_Id = CodBoletoConvenio.Padrao;
boletoREN.Emissao = DateTime.Now;
boletoREN.LogDataAlteracao = DateTime.Now;
boletoREN.LogUsuario = "RegistroContratos";
boletoREN.LogVersaoRegistro = 1;
boletoREN.Pagamento = null;
boletoREN.PagamentoValor = null;
boletoREN.Processamento = null;
boletoREN.Status = "S";
boletoREN.ParcelaValor = valorBoleto;
boletoREN.Vencimento = DateTime.Now.AddDays(15);
dbren.AddToBoleto(boletoREN);
dbren.SaveChanges();
renavamBoletoId = boletoREN.Id;
}
//
// The PayOrder on the "main"" db
//
Boleto boletoREG = new Boleto();
boletoREG.NumeroBoletoRenavam = renavamBoletoId;
boletoREG.ArquivoRetorno = null;
boletoREG.BoletoConvenio_Id = CodBoletoConvenio.Padrao;
boletoREG.BoletoSituacao_Id = CodBoletoSituacao.Ativo;
boletoREG.Credor_Id = credor.Id;
boletoREG.Emissao = DateTime.Now;
boletoREG.LogAlteracao = DateTime.Now;
boletoREG.LogUsuario = pUsuario;
boletoREG.LogVersao = 1;
boletoREG.NumeroBoletoRenavam = null;
boletoREG.Pagamento = null;
boletoREG.PagamentoValor = null;
boletoREG.Processamento = null;
boletoREG.Status = true;
boletoREG.Valor = valorBoleto;
boletoREG.Vencimento = DateTime.Now.AddDays(15);
dbs.AddToBoletos(boletoREG);
dbs.SaveChanges();
//
// Then, for each contract, inserts a row in a child table that
// will relate all contracts with it's PayOrders
foreach (Contrato contrato in contratosCredor)
{
BoletoTaxaContrato boletoContrato = new BoletoTaxaContrato();
boletoContrato.Boleto = boletoREG;
boletoContrato.Contrato = contrato;
boletoContrato.Data = DateTime.Now;
boletoContrato.LogAlteracao = DateTime.Now;
boletoContrato.LogUsuario = pUsuario;
boletoContrato.LogVersao = 1;
boletoContrato.Quantidade = 1;
boletoContrato.Taxa_Id = CodBoletoTaxa.RegistroContrato;
dbs.AddToBoletoTaxaContratos(boletoContrato);
dbs.SaveChanges();
}
}
}
}