WCF服务库和Silverlight Web应用程序

时间:2016-05-20 15:21:56

标签: c# .net entity-framework wcf silverlight

我有一个SilverLight应用程序,我试图将传递给WCF服务库的实体DAL中的信息加载到Silverlight组合框。 我已将代码添加到dropbox Download Project here

到目前为止,我已确定

  1. DAL ORM创建数据库并为正确的信息播种
  2. 当我使用Test Client运行服务时,我在查看器中收到对象
  3. 问题必须是从服务到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();
    
    }
    

    最后一行似乎给了我一个错误。但我要回复一份清单;它直接绑定到组合框?

    谢谢

0 个答案:

没有答案