0

これは非常に簡単なはずですが、ビジネス オブジェクトDataContractSerializer内のすべてのカスタム コレクションを使用してビジネス オブジェクトを逆シリアル化した後、読み取り専用になりました。

正確には、コレクション内のアイテムを交換して逆シリアル化後にコレクションを操作しようとしていますが、これはコレクションが読み取り専用であるという例外をスローしています。ただし、連載前は大丈夫です。

タイプ 'System.NotSupportedException' の未処理の例外が mscorlib.dll で発生しました 追加情報: コレクションは読み取り専用です。

これが、カスタム コレクション クラスを装飾した方法です。

[Serializable]
[DataContract]
[KnownType(typeof(RuleBase))]
[KnownType(typeof(RuleSet))]
public class GenericRuleCollection : ObservableCollection<IRule>
{
    //...
}

これは、ビジネス オブジェクト クラスを装飾した方法です。

[Serializable]
[DataContract]
public class RuleSet : GenericRuleContainer
{
    //...
}

[Serializable]
[DataContract(IsReference = true)]
public abstract class GenericRuleContainer : GenericRule, IRuleContainer
{        
    private GenericRuleCollection _children;     
    [DataMember]
    public GenericRuleCollection Children
    {
        get { return _children; }
        set { SetProperty(ref _children, value); }
    }
    //...
}

シリアライゼーションとデシリアライゼーションのコード:

public class DataContractSerializer<T>
{
    public void SerializeToFile(string fileName, T obj)
    {
        var serializer = new DataContractSerializer(typeof(T));
        using (FileStream fs = File.Open(fileName, FileMode.Create))
        {                
            serializer.WriteObject(fs, obj);
        }
    }

    public T DeserializeFromFile(string fileName)
    {
        var serializer = new DataContractSerializer(typeof(T));
        using (FileStream fs = File.Open(fileName, FileMode.Open))
        {
            object s2 = serializer.ReadObject(fs);
            return (T)s2;
        }
    }
}
4

1 に答える 1

1

Googleでランダムな調査を行った後、属性の装飾をカスタムコレクションクラスからに変更することで、この問題を修正できまし[DataContract][CollectionDataContract]

[Serializable]
[CollectionDataContract]
[KnownType(typeof(RuleBase))]
[KnownType(typeof(RuleSet))]
public class GenericRuleCollection : ObservableCollection<IRule>
{
    //...
}
于 2016-02-17T10:15:35.433 に答える