mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 21:58:40 +00:00
13 lines
271 B
Go
13 lines
271 B
Go
package ent
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
entsql "entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
// Sql exposes the underlying database connection in the ent client
|
|
// so that we can use it to perform custom queries.
|
|
func (c *Client) Sql() *sql.DB {
|
|
return c.driver.(*entsql.Driver).DB()
|
|
}
|