Insight.Database - 使用Insert with OpenWithTransaction

时间:2016-06-14 23:14:08

标签: c# visual-studio-2015 insight.database

第一个问题:)

我是使用Insight.Database库的新手,但我认为我正在以正确的方式使用它。我在同一解决方案中的另一个项目中运行XUnit Test中的(简化)代码。使用connTran.Insert在行上抛出异常,如果我在CATCH块中中断日志功能并查看异常中的消息,则会给出错误错误CS7069: Reference to type 'DbConnectionWrapper' claims it is defined in 'Insight.Database', but it could not be found,但调试器将会也打破connTran.Rollback()行A transaction has not been created for this connection

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

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

这是我正在使用的插入代码 - 我也尝试过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; }
}

1 个答案:

答案 0 :(得分:2)

嗯......更多地搞乱并深入探讨Insight源代码,我已经超越了原来的问题,并遇到了一些问题。我将在此发表我的调查结果以防Insight作者看一看。

我原来问题的答案是将我的TRY..CATCH重组为USING内部 - 这可能是显而易见的,也许它不是,但现在我知道了:)所以我的代码转变为:< / p>

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,因此我热衷于将表值参数与Insert存储过程一起使用。这给了我下一个头脑 - 这可能与过时的文档有关。

doco声明代码如下:

connTran.Insert("usp_Lookup_InsertHeader", entity);

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

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

Insight一直在抱怨&#34; lookupHeader&#34;参数没有定义,所以我最终偶然发现了doco中的其他地方,我的代码变成了这个:

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

现在洞察力很高兴:)

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

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

观察SQL事件探查器,我发现SQL文本Insight发布时包含的毫秒数现在是日期时间值的字符串表示形式。以下是本文的示例,其中包含字符串datetime - &#39; 2016-06-16 18:03:32.5510000&#39;。

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时,它会出现日期时间转换问题。如果我手动编辑了datetime字符串中的毫秒并执行了文本,则TVP正确创建。

随着更多的游戏,我发现将Type中的CsysLastUpdateDate字段声明为DateTime2字段,Insight发送的SQL执行了aok,而Insert很愉快。

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