Files
Squealify/Contexts/MethodWithSqlStatement.cs
2025-04-15 16:26:12 +02:00

10 lines
339 B
C#

using Sybil;
namespace Squealify.Contexts;
public readonly struct MethodWithSqlStatement(MethodBuilder methodBuilder, string placeholder, string commandText)
{
public readonly MethodBuilder MethodBuilder = methodBuilder;
public readonly string Placeholder = placeholder;
public readonly string CommandText = commandText;
}