Write SqlDataReader to immediate window c#

后端 未结 3 1664
耶瑟儿~
耶瑟儿~ 2021-01-18 02:38

I am trying to debug a SQL response which is throwing an error:

Conversion failed when converting the varchar value \'0.01\' to data type bit.

3条回答
  •  太阳男子
    2021-01-18 03:16

    • You could set a breakpoint inside Dapper code - is Open Source.
    • Result1 is defined as varchar(50), but your C# class says decimal.

提交回复
热议问题