为什么无法在Entity Framework中保存到SQL Server数据库

时间:2015-01-05 22:57:10

标签: c# entity-framework linq-to-entities

我尝试使用Entity Framework(Linq to Entities)将数据保存到SQL Server数据库中。

代码是:

_repository = new FlightCenterEntities(connectionString);

Sale newSale = new Sale
                        {
                            Name = null,
                            UserID = userId,
                            Shop = shop,
                            CreatedDateTime = createdDateTime,
                            BookingDate = bookingDate,
                            PassengerName = passengerName,
                            Destination = destination,
                            Deposit = deposit,
                            SaleLocation = saleLocation
                        };

// Write to SalesSupplier table
this._repository.Sales.AddObject(newSale);
this._repository.SaveChanges(); 

但我发现SQL Server数据库中没有新的销售记录。问题是什么?如何通过Linq向实体保存数据?感谢。

1 个答案:

答案 0 :(得分:0)

答案与LINQ无关。所以这篇文章可以删除。