-
Hi, But now I want to create a SQL statement to support caching in SQLite DB. What I need: What I get: Code snippet I understand, that's not a right way but how can I prepend a Cache Clause before select statement? Thanks in advance for any solution or workaround. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Use AppendClause: var queryBuilder = new SqlBuilder()
.AppendClause("CACHE", null, "[CacheTableName]")
.SELECT("*")
; |
Beta Was this translation helpful? Give feedback.
Use AppendClause: