启用S​​ilverlight的WCF服务中的类数据成员

时间:2011-07-25 14:23:57

标签: c# wpf silverlight wcf-binding

我的SVC文件中有课程。我最初只用很少的数据成员创建它。我已经添加了更多。问题是,当我调用该服务时,添加这些成员时不会出现。我有一个选择查询填充这些看似有效的字段,因为我可以让它们填充不同的字段并查看我的信息。我甚至不知道怎么开始麻烦拍这个。我已经上课了。

public class LightOrder 
{
    public string SKU { get; set; }
    public string productname { get; set; }
    public string itemnumber { get; set; }
    public string asin { get; set; }
    public string amazon { get; set; }
    public double ourprice { get; set; }
    public string bbprice { get; set; }
    public int w1 { get; set; }
    public int w2 { get; set; }
    public int w3 { get; set; }
    public string w4 { get; set; }
    public int quantity { get; set; }
    public string rank { get; set; }
    public string ranking { get; set; }
    public string pendingorder { get; set; }
    public string afner { get; set; }
    public int cost { get; set; }
    public string order { get; set; }
    public string total { get; set; }
    public string profit { get; set; }
    public string percent { get; set; }


}

1 个答案:

答案 0 :(得分:2)

我没有看到任何DataContract或DataMember属性。此类是否通过ServiceKnownType属性成为服务合同的一部分?如果是这样,在添加新属性后是否更新了服务引用?