我正在尝试向我的实体添加一个对象,但它给了我错误:“未找到”这是我的代码:
DataServiceContext dtx = new DataServiceContext(new Uri("http://localhost/website2/wcfservice1.svc/"));
dtx.Credentials = System.Net.CredentialCache.DefaultCredentials;
ServiceReference1.Car car = new ServiceReference1.Car();
car.CarName = "aaa";
car.CarModel = "111";
dtx.AddObject("Car", car);
dtx.SaveChanges();
我已经在 AddObject 中尝试过“Cars”和“Car”,但仍然没有帮助..我的 CARID 列是数据库中的 PKEY 列。
请帮忙。谢谢。