gpt4 book ai didi

c# - Insight.Database - 使用 Insert 和 OpenWithTransaction

转载 作者:行者123 更新时间:2023-12-05 02:20:53 25 4
gpt4 key购买 nike

第一个问题:)

我是使用 Insight.Database 库的新手,但我认为我正在以正确的方式使用它。我正在同一解决方案中另一个项目的 XUnit 测试中运行下面的(简化)代码。异常是在 connTran.Insert 的行上抛出的,如果我中断 CATCH block 中的日志记录功能并查看异常中的消息,它会给出错误错误 CS7069: Reference to type 'DbConnectionWrapper'声称它是在“Insight.Database”中定义的,但找不到,但随后调试器也会在 connTran.Rollback() 行上中断 A transaction has not been created for this connection

奇怪的是,我在同一个解决方案和测试项目的另一个测试中使用了相同的代码,但使用的是平面实体并且运行良好。

我使用的是 Visual Studio 2015 Enterprise。调试器也没有正常运行 - 在事务“内部”时,悬停在变量等上不起作用。我在 Github 上发现了一个非常相似的 github 问题 here但没有我可以使用的分辨率。

这是我正在使用的插入代码 - 我也尝试过 connTran.Insert 但我得到了相同的结果。

DbConnectionWrapper connTran = null;
try
{
using (connTran = _dbconnection.OpenWithTransaction())
{
var lookupHeader = connTran.QueryResults<Results>("usp_Lookup_InsertHeader", entity);
connTran.Commit();
}
}
catch(Exception ex)
{
logException(ex.Message);
connTran.Rollback();
throw;
}

实体对象如下所示:

public class LookupEntity
{
[RecordId]
public int LookupHeaderId { get; set; }
public string LookupHeaderName { get; set; }
public string LookupHeaderDescription { get; set; }
public string LookupHeaderCategory { get; set; }
public string LookupHeaderType { get; set; }
public string LookupBPMObjectName { get; set; }
public string LookupBPMMethodName { get; set; }
public string LookupBPMInputParams { get; set; }
public string LookupBPMExtraParams { get; set; }
public string LookupBPMOutputDataSetName { get; set; }
public string LookupBPMOutputNameNode { get; set; }
public string LookupBPMOutputValueNode { get; set; }
public string LookupBPMOutputActiveNode { get; set; }
public int Active { get; set; }
public int Cache { get; set; }
public int CsysLastUpdateBy { get; set; }
public DateTime? CsysLastUpdateDate { get; set; }
public int CsysInsertBy { get; set; }
public DateTime? CsysInsertDate { get; set; }
public string CsysTimeStamp { get; set; }
public string CsysTag { get; set; }
public int CsysOwnerId { get; set; }
public string CsysOwnerType { get; set; }
public int CsysRecordStatus { get; set; }

[ChildRecords]
public List<LookupDetail> LookupDetails { get; set; }
}

最佳答案

好吧......更多的是在 Insight 源代码中四处乱逛,我已经解决了原来的问题,并遇到了更多问题。我将在这里发布我的发现,以防 Insight 作者看到。

我最初问题的答案是将我的 TRY..CATCH 重组到 USING 中 - 这可能很明显,也许不是,但现在我知道了:)所以我的代码变成了这个:

using (var connTran = _dbconnection.OpenWithTransaction())
{
try
{
connTran.Insert("usp_Lookup_InsertHeader", entity, new { lookupHeader = entity });
connTran.Commit();
}
catch(Exception ex)
{
logException(ex.Message);
connTran.Rollback();
throw;
}
}

请注意,我也可以避免在使用之外声明 connTran 变量。

由于我使用的是 SQL 2008,所以我很想将表值参数与插入存储过程一起使用。这给了我下一个令人头疼的问题 - 这可能与过时的文档有关。

doco 声明代码如下:

connTran.Insert("usp_Lookup_InsertHeader", entity);

会插入记录,然后将新的标识值映射回实体,假设返回的 id 字段和实体属性名称匹配(它们确实匹配)。 Insert 存储过程具有如下签名:

CREATE PROCEDURE [dbo].[usp_Lookup_InsertHeader] 
@lookupHeader [lookupHeaderType] READONLY

Insight 一直提示“lookupHeader”参数没有定义,所以我最终在 doco 的其他地方偶然发现了一些东西,将我的代码变成了这个:

connTran.Insert("usp_Lookup_InsertHeader", entity, new { lookupHeader = entity });

现在 Insight 很高兴 :)

然后第三个问题变成了日期时间值。

实体中的 CsysLastUpdateDate 属性被定义为 DateTime?。在 TVP 的 SQL 类型中,CsysLastUpdateDate 字段被定义为 DateTime。在我的测试中,我将 CsysLastUpdateDate 设置为 DateTime.Now

观察 SQL Profiler,我发现 Insight 发布的 SQL 文本包括毫秒,现在是日期时间值的字符串表示形式。下面是此文本的示例,其中包含字符串日期时间 - '2016-06-16 18:03:32.5510000'。

declare @p1 dbo.lookupHeaderType
insert into @p1 values(0,N'timbo.test',N'',N'',N'',N'',N'',N'',N'',N'',N'',N'',N'',1,1,2,'2016-06-16 18:03:32.5510000',2,'2016-06-16 18:03:32.5510000',N'',N'',1,N'cSysSite',1)

当 SQL 尝试执行该文本以创建 TVP 时,它因日期时间转换问题而出错。如果我手动编辑日期时间字符串中的毫秒数并执行文本,则 TVP 会正确创建。

随着更多的尝试,我发现将 Type 中的 CsysLastUpdateDate 字段声明为 DateTime2 字段,Insight 发送的 SQL 执行正常并且 Insert 工作正常.

我不确定我是否发现了错误或者这些只是新手学习,但我希望这对下一个人有帮助:)

关于c# - Insight.Database - 使用 Insert 和 OpenWithTransaction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37823622/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com