WCF RIA服务中的服务器端代码无法执行

本文关键字:代码 执行 服务器端 RIA 服务 WCF | 更新日期: 2023-09-27 18:15:23

我是silverlight商业应用的新手。我的服务器端代码有问题。我在。web app

中创建了这样的代码
public class Doc
{
    public Doc() { }
    public Doc(Guid ID, Guid ProjektId, string Name)
    {
        this.ID = ID;
        this.ProjektID = ProjektID;
        this.Name = Name;
    }
    [Key]
    public Guid ID { get; set; }
    public Guid ProjektID { get; set; }
    public string Name { get; set; }

}
// TODO: Create methods containing your application logic.
[EnableClientAccess()]
public class DocList : DomainService
{
    [Query]
    public List<Doc> getDocList()
    {
        Debug.WriteLine("Testuje debugera dokument");
        //getImlArray();
        List<Doc> docList = new List<Doc>();
        docList.Add(new Doc(Guid.Empty, Guid.Empty, "t1"));
        docList.Add(new Doc(Guid.Empty, Guid.Empty, "t21"));
        docList.Add(new Doc(Guid.Empty, Guid.Empty, "t211"));
        return docList;
    }
    [Insert]
    public void emptyInsert(Doc project) { }
    [Update]
    public void emptyUpdater(Doc project) { }
    [Delete]
    public void emptyDelete(Doc project) { }
}

在客户端应用程序视图中调用这样的东西:公共房屋(){

InitializeComponent ();
        this.Title = ApplicationStrings.HomePageTitle;
        //.net reflektor
        //DocList docList = new DocList();
        //docList.getDocListQuery();
        DocList x = new DocList();
        x.getDocListQuery();
   }

问题是我的服务器端代码不是调用。这不是调试器的问题,因为即使Debug.WriteLine("Testuje debugera dokument")也没有显示在输出部分

WCF RIA服务中的服务器端代码无法执行

我已经解决了。初学者犯的愚蠢错误。我没有使用LoadOperation在我的silverlight应用