2024-04-18 01:44:37 +02:00
|
|
|
|
using SqlKata;
|
|
|
|
|
|
using SqlKata.Compilers;
|
|
|
|
|
|
|
2024-11-30 23:05:07 +01:00
|
|
|
|
namespace Wino.Services.Extensions
|
2024-04-18 01:44:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
public static class SqlKataExtensions
|
|
|
|
|
|
{
|
|
|
|
|
|
private static SqliteCompiler Compiler = new SqliteCompiler();
|
|
|
|
|
|
|
|
|
|
|
|
public static string GetRawQuery(this Query query)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Compiler.Compile(query).ToString();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|