您好我的wcf服务有问题。我正在尝试调用返回类型对象列表的方法。我也在使用实体框架。
public IList<Product> GetAllProducts()
{
using (var db = new AuctionContext())
{
return db.Products.ToList();
}
}
</service>
<service name="AuctionSystem.WcfService.ProductService">
<endpoint address="" binding="wsDualHttpBinding" contract="AuctionSystem.WcfService.Contracts.IProductService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:9993/Design_Time_Addresses/AuctionSystem.WcfService/ProductService/" />
</baseAddresses>
</host>
</service>
合同:
[OperationContract]
IList<Product> GetAllProducts();
该方法本身正在运行,但是当我尝试在我的wcf服务UI上调用此方法时,它停留在“调用服务”我正在使用wsdualhttpbinding。
有什么想法吗?
编辑:我在Product对象中意识到我有虚拟列表,为什么这个列表会导致wcf挂起?答案 0 :(得分:0)
让所有人想知道为什么它是由于循环依赖造成的。