我如何使用dapper连接到sqlite数据库?

时间:2011-08-09 11:16:23

标签: sqlite dapper

如何使用dapper连接并从sqlite数据库获取数据?

2 个答案:

答案 0 :(得分:22)

你不需要做任何神奇的事情。只需添加:

using Dapper;

在您的公开SqliteConnection

上运行查询

cnn.Query("select 'hello world' from Table")

答案 1 :(得分:0)

这是一个带有内存数据库的完整示例。需要C#8.0。

using System;
using System.Data.SQLite;
using Dapper;

namespace First
{
    // dotnet add package System.Data.SQLite.Core
    // dotnet add package Dapper
    class Program
    {
        static void Main(string[] args)
        {
            string cs = "Data Source=:memory:";

            using var con = new SQLiteConnection(cs);
            con.Open();

            var res = con.QueryFirst("select SQLITE_VERSION() AS Version");

            Console.WriteLine(res.Version);
        }
    }
}

运行示例:

$ dotnet run
3.30.1