11 lines
327 B
C#
11 lines
327 B
C#
using Microsoft.SqlServer.TransactSql.ScriptDom;
|
|
using SQLLinter.Core.Interfaces;
|
|
|
|
namespace SQLLinter.Infrastructure.Interfaces
|
|
{
|
|
public interface IFragmentBuilder
|
|
{
|
|
TSqlFragment? GetFragment(string sqlPath, TextReader txtRdr, out IList<ParseError> errors, IEnumerable<IOverride> overrides = null);
|
|
}
|
|
}
|