所以我正在尝试使用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
答案 0 :(得分:0)
尝试context.Logs.where(l => l.Id == 216471)。删除()