Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个由外部方设计的相当可怕的模式,它包含一个名为的表order,因此当我在 LINQPad 中调用一个引用该表的查询时,我得到一个 SQL 语法错误。
order
我知道如何在 MySQL 中引用标识符,但我看不到如何使用 LINQPad 和 IQ 驱动程序来执行此操作。看起来这似乎取决于驱动程序的实现。
您是否尝试过使用反引号 (`) 来引用表名?
select * from `order`
如果这不起作用,您可能必须按照此处所述配置 quoteIdentifiers 。