0

我有一个由大型复杂类组成的数据模型。在这里,您可以在以下(我的模型中最小的类之一)示例中看到我的类的一般结构:

[DataContract(IsReference = true)]
public partial class Name : PresentationBase
{
    [DataMember]
    private SmartProperty<string> _first;
    public SmartProperty<string> First
    {
        get { return this._first ?? (this._first = new SmartProperty<string>()); }
        set
        {
            bool isModified = false;

            if (this._first == null)
            {
                if (value != null)
                {
                    isModified = true;
                }
            }
            else if (value == null)
            {
                isModified = true;
            }
            else if (this._first.UnderlyingValue == null)
            {
                if (value.UnderlyingValue != null)
                {
                    isModified = true;
                }
            }
            else if (value.UnderlyingValue == null)
            {
                isModified = true;
            }
            else if (!value.UnderlyingValue.Equals(this._first.UnderlyingValue))
            {
                isModified = true;
            }

            this._first = value;

            if (isModified)
            {
                this._first.IsModified = isModified;
                this.OnPropertyChanged("First");
            }
        }
    }

    [DataMember]
    private SmartProperty<string> _last;
    public SmartProperty<string> Last
    {
        get { return this._last ?? (this._last = new SmartProperty<string>()); }
        set
        {
            bool isModified = false;

            if (this._last == null)
            {
                if (value != null)
                {
                    isModified = true;
                }
            }
            else if (value == null)
            {
                isModified = true;
            }
            else if (this._last.UnderlyingValue == null)
            {
                if (value.UnderlyingValue != null)
                {
                    isModified = true;
                }
            }
            else if (value.UnderlyingValue == null)
            {
                isModified = true;
            }
            else if (!value.UnderlyingValue.Equals(this._last.UnderlyingValue))
            {
                isModified = true;
            }

            this._last = value;

            if (isModified)
            {
                this._last.IsModified = isModified;
                this.OnPropertyChanged("Last");
            }
        }
    }

    [DataMember]
    private SmartProperty<string> _maiden;
    public SmartProperty<string> Maiden
    {
        get { return this._maiden ?? (this._maiden = new SmartProperty<string>()); }
        set
        {
            bool isModified = false;

            if (this._maiden == null)
            {
                if (value != null)
                {
                    isModified = true;
                }
            }
            else if (value == null)
            {
                isModified = true;
            }
            else if (this._maiden.UnderlyingValue == null)
            {
                if (value.UnderlyingValue != null)
                {
                    isModified = true;
                }
            }
            else if (value.UnderlyingValue == null)
            {
                isModified = true;
            }
            else if (!value.UnderlyingValue.Equals(this._maiden.UnderlyingValue))
            {
                isModified = true;
            }

            this._maiden = value;

            if (isModified)
            {
                this._maiden.IsModified = isModified;
                this.OnPropertyChanged("Maiden");
            }
        }
    }
}

我正在使用Json.net进行序列化/反序列化操作。由于我的模型很复杂,我想知道是否可以个性化 Json.net 库以更有效地处理我的实体。修改我的模型是不可能的,因为它确实是一个大项目,任何改变都会造成很大的影响。

我尝试了除 Json.net 之外的一些 Json 序列化库,包括ServiceStack.TextfastJson等。但它们对我没有用。例如 ServiceStack.Text 不序列化私有字段,fastJson 在序列化复杂实体方面存在问题,正如您在库的讨论页面上看到的那样......

简而言之,我下载了 Json.net 的源代码来为我自己的实体定制库,但我在库中迷路了。:) 您对我完成此类实体的性能改进有什么建议吗?我只序列化我的实体中的私有字段,所以我认为这可能是一个重点,但我不知道如何开始。

谢谢,

4

1 回答 1

1

查看您的代码,我想知道问题是否在于实际的序列化/反序列化或大量 if-then-else 构造和您正在使用的 onpropertychanged。我会首先尝试使用布尔代数而不是这些 if-then-else 结构来优化它......或者尝试将它们全部删除。

例如 isModified = (value == null) || (value.UnderlyingValue == null) || (_maiden==null&&value==null) || [...]

您还可以引入新的(公共)属性而不是私有属性,并使用 [JsonIgnore] 标记现有属性。

最后,如果您真的不关心 JSON 或其他东西,我会考虑查看 protobuf-net。

于 2013-01-08T14:01:57.553 回答