3

嗨,我正在尝试为应该在 Visual Studio 2013 中使用的 DbCommand 对象创建自定义 Visualizer。

我有以下代码

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();
    }
}
4

1 回答 1

5

因为您正在显式创建它,所以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());
        }
    }
}
于 2015-02-26T19:56:45.850 回答