Ejemplo n.º 1
0
 public static SqlExpression NpgsqlBoxConstructor(
     [Type(typeof(float))] SqlExpression top,
     [Type(typeof(float))] SqlExpression right,
     [Type(typeof(float))] SqlExpression bottom,
     [Type(typeof(float))] SqlExpression left)
 {
     return(PostgresqlSqlDml.NpgsqlBoxConstructor(
                PostgresqlSqlDml.NpgsqlPointConstructor(right, top),
                PostgresqlSqlDml.NpgsqlPointConstructor(left, bottom)));
 }
Ejemplo n.º 2
0
 public static SqlExpression NpgsqlPointConstructor(
     [Type(typeof(float))] SqlExpression x,
     [Type(typeof(float))] SqlExpression y)
 {
     return(PostgresqlSqlDml.NpgsqlPointConstructor(x, y));
 }