Currently FunSqlExpr is defined in DBRecord.Internal.Sql.DML as
FunSqlExpr String [SqlExpr] where the first argument (name) is a String.
In ms-sql server, we can have function names like [dbo].[CheckFunc].
In order to support this, we need to change the format and allow a different structure that would let us store the qualifier as well as the function name.
Currently
FunSqlExpr
is defined inDBRecord.Internal.Sql.DML
asFunSqlExpr String [SqlExpr]
where the first argument (name) is aString
.In
ms-sql server
, we can have function names like[dbo].[CheckFunc]
. In order to support this, we need to change the format and allow a different structure that would let us store the qualifier as well as the function name.