Hi, I'm generating a WCF Proxy to my contract. The contract contain classes that are implementing an Interface. on the Generated proxy the interface is gone. so I can't use it.
Is there a way to mark the interface in some way to be generated on the proxy file ?
Here is a contact example:
public interface IMyGeneralInterface
{
int? ID { get; set; }
}
[DataContract]
public abstract class EntityBase : IMyGeneralInterface
{
[DataMember]
public virtual int? ID { get; set; }
}
The Generated proxy will not contain any definition, of IMyGeneralInterface which will not enable me to use it one the client side.
What should I do ?
Thanks, Dani