linq2db / linq2db.LINQPad

linq2db.LINQPad is a driver for LINQPad.
MIT License
74 stars 23 forks source link

table names that are reserved words in c# are not @escaped #101

Closed wesj1s closed 6 months ago

wesj1s commented 9 months ago

We have a table named "event". When this table is queried, the query expression fails because event is a reserved word. Reserved words need to be escaped with the @ symbol (ie, @event) to work around this issue.

image