如何使用SqlKata从SQL Server数据库显示表?

时间:2019-03-06 09:05:28

标签: sqlkata

我正在尝试使用SqlKata在SQL Server 2017中显示数据库中的表。

我浏览了一些研究。基于one of the articles,我需要编写此命令@Configuration public class DefBean { @Bean public Test test(){ return new TestImplementation(); } }

我的问题是:我们将命令放在C#.NETCoreApp 1.1目标框架文件中的什么位置?以及如何运行以显示结果?

1 个答案:

答案 0 :(得分:0)

如果您有演员表课程,请使用

var books = db.Query("Books").Get<YouClass>();

但是您没有强制转换类->使用

var books = db.Query("Books").Get<dynamic>();

如果要记录执行查询,请编写代码startup.cs

var db = new QueryFactory(connection, new SqlServerCompiler());

// Log the compiled query to the console
db.Logger = compiled => {
    Console.WriteLine(compiled.ToString()); //NLog - GrayLog - API - DB - TextFile - more..
};

https://sqlkata.com/docs/execution/logging