2

Dapper.DefaultTypeMap.MatchNamesWithUnderscores不适用于插入。映射器适用于该Get<>方法。我在我的 ASP.NET Core 1.0 RC2 项目中使用以下版本以及 postgres 数据库。

"dependencies": {
    "Dapper": "1.50.0-rc2",
    "Dapper.Contrib": "1.50.0-beta8"
}

代码片段

using (var conn = new NpgsqlConnection("connString"))
{
    conn.Open();
    Dapper.DefaultTypeMap.MatchNamesWithUnderscores = true;
    long id = conn.Insert(new Foo { Name = "new foo", LocationId = 3});

    return id;
}

执行的插入 SQL 语句

insert into foo ("Name", "LocationId") values ($1, $2) RETURNING Id

Foo 类

[Dapper.Contrib.Extensions.Table("foo")]
public class Foo
{
    public int Id { get; set; }
    public string Name { get; set; }            
    public int LocationId { get; set; }
}

富表

CREATE TABLE "foo" (
    "id" SERIAL PRIMARY KEY,
    "name" VARCHAR(100) NOT NULL,
    "location_id" INTEGER REFERENCES "location" (id)
);
4

2 回答 2

1

Dapper.Contrib 进行插入,看起来 Dapper.Contrib 甚至没有引用 MatchNamesWithUnderscores。您可能可以在 dapper 的 github 上打开一个问题,但它看起来并不容易更改。

于 2016-06-08T00:58:26.960 回答
1

github上有未解决的问题

于 2016-06-08T04:48:22.817 回答