sqlkata / querybuilder

SQL query builder, written in c#, helps you build complex queries easily, supports SqlServer, MySql, PostgreSql, Oracle, Sqlite and Firebird
https://sqlkata.com
MIT License
3.06k stars 499 forks source link

Can you please include https://github.com/sqlkata/querybuilder/commit/f3d7c924f4d11c33056d7b002f9d5066dc856117 & re-publish 2.4.0 ? #686

Open ElderOrb opened 11 months ago

ElderOrb commented 11 months ago

seems like this commit is required for queries like this to compile properly:

new Query("Alert").Join("AlertDefinition", "AlertDefinition.Id", "Alert.AlertDefinitionId") .Where("AlertDefinition.Id", (int)5) .AsDelete();