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.11k stars 500 forks source link

Method .As("T") not working? #724

Open TiepHoangDev opened 1 month ago

TiepHoangDev commented 1 month ago

Hi, I test method .As() but not working! Please check!

 var query = new Query("cte").As("T").Select("T.*")

Result:

SELECT
  [T].*
FROM
  [cte]

image