csharp Dapper Insert #dapper

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Dapper Insert #dapper相关的知识,希望对你有一定的参考价值。

/// Dapper Insert
/// https://github.com/StackExchange/Dapper
using (var conn = new SqlConnection (connStr)) {
    conn.Execute (@"INSERT INTO Region VALUES (@id, @desc)",
        new [] {
            new { id = 5, desc = "Taiwan" },
            new { id = 6, desc = "Mars" }
        });
}

以上是关于csharp Dapper Insert #dapper的主要内容,如果未能解决你的问题,请参考以下文章

csharp Dapper Call StoredProcedure #dapper

csharp [03] Dapper Select类型#dapper

csharp [002] Dapper Select没有#dapper类型

Dapper入门使用,代替你的DbSQLhelper

csharp: mappings using Dapper-Extensions+Dapper.net.

csharp Dapper DapperExtension使支持Oracle