在WCF应用程序中调用“SaveChanges()”时,未处理DataServiceRequestException

时间:2013-04-29 08:34:47

标签: wcf exception wcf-data-services

所以我在尝试保存WCF应用程序中的更改时不断收到此错误

 private void button1_Click(object sender, RoutedEventArgs e)
    {
       MBEMEADataContext cc = new MBEMEADataContext(new Uri("http://ldnmbl-sp10dev/sites/mbemea/_vti_bin/listdata.svc"));
       cc.Credentials = System.Net.CredentialCache.DefaultCredentials;

        var source = cc.CaseStudies;
        cc.AddToCaseStudies(
            new CaseStudiesItem
        {
            Title = textBox1.Text,
            Client = textBox2.Text

        });
        cc.SaveChanges();

    }

cc.SaveChanges();被调用时,我得到“DataServiceRequestException未处理”,我不知道为什么

0 个答案:

没有答案