我有一个SilverLight应用程序,我试图将传递给WCF服务库的实体DAL中的信息加载到Silverlight组合框。 我已将代码添加到dropbox Download Project here
到目前为止,我已确定
问题必须是从服务到MainPage文件的某个地方
这是我服务的代码
private FundDBContext cxt = new FundDBContext();
public IList<Fund> GetFund()
{
return cxt.Funds.ToList();
}
接口
namespace FundService {
[ServiceContract]
public interface IFundService
{
[OperationContract]
IList<Fund> GetFund();
}
}
实施(我已经加入了对服务的敬意)
public MainPage()
{
InitializeComponent();
FundServiceClient service = new FundServiceClient();
cbxFundList.ItemsSource = service.GetFundAsync();
}
最后一行似乎给了我一个错误。但我要回复一份清单;它直接绑定到组合框?
谢谢