2

因此,我正在尝试使用 EntityFramework.Extended 进行以下操作:

https://github.com/loresoft/EntityFramework.Extended

context.Logs.Delete(l => l.Id == 216471);

这是我能提供的最简单的例子。

问题是这个和我尝试做的任何其他 .Delete() 都是给我一个:

System.NullReferenceException: Object reference not set to an instance of an object.

我正在针对 Oracle 11gR2 数据库使用 EF 5.0.0 和 EF.Extended 5.0.0.73。

有任何想法吗?:)

GitHub上的交叉帖子:http: //bit.ly/12Z6xj2

4

1 回答 1

0

尝试 context.Logs.where(l => l.Id == 216471).Delete()

于 2013-08-07T06:16:03.720 回答