[DataContract]
public abstract class FooBase
{
    [DataMember]
    public int Bar { get; set; }
}

That is a base class that I use as the base class for other classes that are also DataContracts. Here's the problem though...

In Proj1 I choose Add Service Reference... (MyService) and it generates the code for me, including the FooBase code. In Proj2 I choose Add Service Reference... (OtherService) and it does the same.

But, I want the Foo base class to be in it's own assembly that both projects can reference... so, is it better to:

Copy/paste the FooBase class into the other shared assembly as it is?

[DataContract]
public abstract class FooBase
{
    [DataMember]
    public int Bar { get; set; }
}

Or, copy/paste the generated code for the FooBase class into the other shared assembly?

[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="FooBase", Namespace="http://schemas.datacontract.org/2004/07/MyNamespace")]
[System.SerializableAttribute()]
[System.Runtime.Serialization.KnownTypeAttribute(typeof(MyNamespace.Proj1.TypeA))]
[System.Runtime.Serialization.KnownTypeAttribute(typeof(MyNamespace.Proj1.TypeB))]
public partial class FooBase : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {

    [System.NonSerializedAttribute()]
    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;

    private int BarField;

    [global::System.ComponentModel.BrowsableAttribute(false)]
    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
        get {
            return this.extensionDataField;
        }
        set {
            this.extensionDataField = value;
        }
    }

    [System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
    public int Bar {
        get {
            return this.BarField;
        }
        set {
            if ((this.BarField.Equals(value) != true)) {
                this.BarField = value;
                this.RaisePropertyChanged("Bar");
            }
        }
    }

    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

    protected void RaisePropertyChanged(string propertyName) {
        System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
        if ((propertyChanged != null)) {
            propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
        }
    }
}
link|improve this question

feedback

1 Answer

You can have it in a shared library but when adding service reference make sure that shared library is referenced, and that in the Advanced settings of the add reference dialog, you have selected Reuse types in all referenced assemblies.

My preference would be using the non-generated code in the shared library, that is code with just data contracts.

link|improve this answer
Well yes, I know. I'm asking if it's better to use the auto-generated code or the same code that sits on my server? Basically, code 1 or code 2? I stated in my question that either/or will go in a shared library. Just a question of ... which do I use. – m-y Jun 20 '11 at 23:19
If this is a pure .Net solution go with shared library. – Petar Vučetin Jun 21 '11 at 5:57
Petar: Again, that isn't an answer. I already stated in my question that I will place the code in a shared library. That isn't the issue. The question is asking which code to use, the original or the auto-generated. And, to be honest, at this point I wouldn't trust any answers/comments you give. I'd imagine that any answers from you now would be purely flipping a coin if you can't understand after twice iterating that I already plan to place it in a shared library. – m-y Jun 21 '11 at 13:50
Sorry for not being clear. My preference would be using the non-generated code in the shared library, that is code with just data contracts. – Petar Vučetin Jun 22 '11 at 16:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.