C#-DbCommand的自定义可视化工具
作者:互联网
您好,我正在尝试为应在Visual Studio 2013中使用的DbCommand对象创建自定义可视化工具.
我有以下代码
using VisualizerTest;
using Microsoft.VisualStudio.DebuggerVisualizers;
using System;
using System.Data.Common;
using System.Diagnostics;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Windows.Forms;
[assembly: DebuggerVisualizer(typeof(TestVisualizer), typeof(CommandObjectSource), Target = typeof(DbCommand), Description = "Test")]
namespace VisualizerTest
{
public class TestVisualizer : DialogDebuggerVisualizer
{
protected override void Show(IDialogVisualizerService windowService, IVisualizerObjectProvider objectProvider)
{
DbCommand command;
try
{
using (Stream stream = objectProvider.GetData())
{
BinaryFormatter formatter = new BinaryFormatter();
command = (DbCommand)formatter.Deserialize(stream);
}
MessageBox.Show(command.CommandText);
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
}
}
namespace VisualizerTest
{
[Serializable]
public class CommandObjectSource : VisualizerObjectSource
{
public override void GetData(object target, Stream outgoingData)
{
if (target != null && target is DbCommand)
{
DbCommand command = (DbCommand)target;
BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(outgoingData, command);
}
}
}
}
但是CommandObjectSource从未被调用,相反,我得到了一个异常
Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.RemoteObjectSourceException: Type 'System.Data.SqlClient.SqlCommand' in Assembly 'System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked as serializable.
我的理解是,通过使用自定义VisualizerObjectSource,我可以解决序列化问题吗?
附带说明一下,我尝试将Target = typeof(DbCommand)更改为Target = typeof(SqlCommand),并且没有区别.
测试代码:
class Program
{
static void Main(string[] args)
{
using (SqlCommand command = new SqlCommand("SELECT Field1 FROM table WHERE Field2 = @Value1"))
{
command.Parameters.AddWithValue("@Value1", 1338);
TestValue(command);
}
Console.ReadKey();
}
static void TestValue(object value)
{
VisualizerDevelopmentHost visualizerHost = new VisualizerDevelopmentHost(value, typeof(TestVisualizer));
visualizerHost.ShowVisualizer();
}
}
解决方法:
因为您是在显式创建VisualizerDevelopmentHost,所以它不会使用DebuggerVisualizerAttribute,因此必须将CommandObjectSource作为第三个参数传递:
VisualizerDevelopmentHost visualizerHost =
new VisualizerDevelopmentHost(value, typeof(TestVisualizer),
typeof(CommandObjectSource));
进行此更改后,将调用CommandObjectSource,但是仍然存在序列化问题,因为BinaryFormatter还需要将该类标记为Seralizabe …
因此,您可能应该仅使用以下命令包含CommandText(或创建一个新的DTO对象并将其序列化(如果需要多个属性)):
[Serializable]
public class CommandObjectSource : VisualizerObjectSource
{
public override void GetData(object target, Stream outgoingData)
{
if (target != null && target is DbCommand)
{
DbCommand command = (DbCommand)target;
var writer = new StreamWriter(outgoingData);
writer.WriteLine(command.CommandText);
writer.Flush();
}
}
}
并阅读:
public class TestVisualizer : DialogDebuggerVisualizer
{
protected override void Show(IDialogVisualizerService windowService, IVisualizerObjectProvider objectProvider)
{
string command;
try
{
command = new StreamReader(objectProvider.GetData()).ReadLine();
MessageBox.Show(command);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
}
标签:visual-studio-2013,c,debuggervisualizer 来源: https://codeday.me/bug/20191028/1955589.html