繁体   English   中英

如何使用参数使用官方 Neo4j .Net 驱动程序更新节点属性

[英]How to update a node property with official Neo4j .Net Driver using parameters

我想在 asp.net mvc 应用程序中使用 Neo4j 官方驱动程序更新我的模型中的值。 我的代码是:

[HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Edit(string name, Category category)
    {
        try
        {
            var oldName = name.ToString();
            var newName = category.Name.ToString();
            using (var session = _driver.Session())
            {
                session.WriteTransaction(tx =>
                {
                    tx.Run("Match (a:Category) WHERE a.Name = '$oldName' Set a.Name = '$newName'", new { oldName, newName });
                });
            }

            return RedirectToAction(nameof(Index));
        }
        catch
        {
            return View();
        }
    }

但是代码结果没有任何变化。 为什么?

模型类:

 public class Category
{
    public string Name { get; set; }
}

我从 View 中的此代码中获取name值:

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.Name)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { name = item.Name/* id=item.PrimaryKey */ }) |
            @Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
            @Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
        </td>
    </tr>
}

您不需要在查询中用引号将参数括起来 - Neo4j 会为您解决这个问题。

尝试:

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit(string name, Category category)
{
    try
    {
        var oldName = name.ToString();
        var newName = category.Name.ToString();
        using (var session = _driver.Session())
        {
            session.WriteTransaction(tx =>
            {
                tx.Run("Match (a:Category) WHERE a.Name = $oldName Set a.Name = $newName", new { oldName, newName });
            });
        }

        return RedirectToAction(nameof(Index));
    }
    catch
    {
        return View();
    }
}

在参数部分,您只需要提供属性名称与查询中参数名称匹配的任何对象。 在您的示例中, new { oldName, newName }部分是用于创建具有两个属性的匿名 C# 对象的简写,一个称为oldName ,另一个称为newName其值取自您定义的变量。

您可以等效地让一个类代表您的参数:

class MyParams {
   public string oldName { get; set; }
   public string newName { get; set; }
}

var p = new MyParams { oldname = name, newName = category.Name };

tx.Run("Match (a:Category) WHERE a.Name = $oldName Set a.Name = $newName", p);

我更喜欢匿名对象的方法,你的口味可能会有所不同。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM