You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespace CoreService
{
using System.ServiceModel;
using Other;
[ServiceContract]
public interface ITestService
{
[OperationContract]
Child GetChild(int id);
}
public class TestService : ITestService
{
public Child GetChild(int id)
{
return new Child();
}
}
public class Child : Parent
{
public string Name { get; set; }
}
}
namespace Other
{
public class Parent
{
public int Id { get; set; }
}
}
The current setup produces the following WSDL markup:
Given the following service setup:
The current setup produces the following WSDL markup:
We should aim for the following:
I will be raising a PR to address this imminently
The text was updated successfully, but these errors were encountered: