microsoft / SqlScriptDOM

ScriptDOM/SqlDOM is a .NET library for parsing T-SQL statements and interacting with its abstract syntax tree
MIT License
128 stars 13 forks source link

Microsoft.SqlServer.TransactSql.ScriptDom.TSqlParser.Create method should be static #68

Closed Dane-Dai closed 5 months ago

Dane-Dai commented 5 months ago

As title above, the method should be a static method so that developers can call it without creating an useless TSqlParser instance

llali commented 5 months ago

there's already a CreateParser static method to create the parser. we cannot make create static for compatibility.