3

我正在尝试使用 NPoco 的 Delete() 方法从数据库中删除一行。然而它只是抛出一个 NullReferenceException。

我找到了一种解决方法,但我想知道是否有人知道为什么按 ID 删除的内置删除功能似乎对我不起作用。这发生在多个表上。我所有的表都有一个称为 ID 的标准整数主键,它已在模型中使用[PrimaryKey("ID")]装饰器进行标记。

你调用的对象是空的。

Delete<PurchaseItem>(id); // throws null reference exception.
Delete<PurchaseItem>("where id = @0", id);  // works.

传递的 id 是有效的,并且项目在数据库中。代码没有执行任何 SQL。

堆栈跟踪:

[NullReferenceException: Object reference not set to an instance of an object.]
   NPoco.PocoDataFactory.ForObject(Object o, String primaryKeyName) in d:\Adam\projects\NPoco\src\NPoco\PocoDataFactory.cs:41
   NPoco.Database.Delete(String tableName, String primaryKeyName, Object poco, Object primaryKeyValue) in d:\Adam\projects\NPoco\src\NPoco\Database.cs:1587
   NPoco.Database.Delete(Object pocoOrPrimaryKey) in d:\Adam\projects\NPoco\src\NPoco\Database.cs:1598
   Harmsworth.DAL.HarmsworthDB.DeletePurchaseItemFromBasketByID(Int32 id) in c:\inetpub\wwwroot\harmsworth\Website\classes\HarmsworthDAL.cs:224
   Harmsworth.ViewBasketPage.RemoveItem(Int32 id) in c:\inetpub\wwwroot\harmsworth\Website\view-basket.aspx.cs:187
   Harmsworth.ViewBasketPage.PurchaseItemsRepeater_ItemCommand(Object sender, RepeaterCommandEventArgs e) in c:\inetpub\wwwroot\harmsworth\Website\view-basket.aspx.cs:75
   System.Web.UI.WebControls.Repeater.OnItemCommand(RepeaterCommandEventArgs e) +111
   [more redundant trace info]
4

1 回答 1

3

按照GitHub 存储库中的源代码,看起来 NPoco 中有一个错误:

您还没有指定什么类型id,但我将假设它是一个 int 并且您有以下代码:

var id = 12345;
Delete<PurchaseItem>(id);

它调用 NPoco Delete<T>(object pocoOrPrimaryKey),其代码为:

public int Delete<T>(object pocoOrPrimaryKey)
{
    if (pocoOrPrimaryKey.GetType() == typeof(T))
        return Delete(pocoOrPrimaryKey);
    var pd = PocoDataFactory.ForType(typeof(T));
    return Delete(pd.TableInfo.TableName, pd.TableInfo.PrimaryKey, null, pocoOrPrimaryKey); // This is the method your code calls
}

依次调用 NPoco Delete(string tableName, string primaryKeyName, object poco, object primaryKeyValue),其代码为:

public virtual int Delete(string tableName, string primaryKeyName, object poco, object primaryKeyValue)
{
    if (!OnDeleting(new DeleteContext(poco, tableName, primaryKeyName, primaryKeyValue))) return 0;
    var pd = PocoDataFactory.ForObject(poco, primaryKeyName);
    ...
}

我只包含了前两行,因为它是PocoDataFactory.ForObject根据您的堆栈跟踪引发异常的方法。的代码ForObject(object o, string primaryKeyName)是:

public PocoData ForObject(object o, string primaryKeyName)
{
    var t = o.GetType(); // This is where the exception comes from
    ...
}

这是正在发生的事情(假设 id 为 12345,表映射为 PurchaseItem,主键映射为 Id):

Delete<PurchaseItem>(pocoOrPrimaryKey : 12345);
Delete(tableName: "PurchaseItem", primaryKeyName: "Id", poco: null, primaryKeyValue: 12345);
PocoDataFactory.ForObject(o: null, primaryKeyName: Id);

有效的原因Delete<PurchaseItem>("where id = @0", id);是它遵循不同的代码路径,其中用于解析的类型PocoData来自typeof(T)where Tis PurchaseItem

于 2014-08-01T15:11:11.487 回答