SQL Class
Provides a set of static (Shared in Visual Basic) methods to create SqlBuilder instances.
Inheritance Hierarchy
System.Object
DbExtensions.SQL
Namespace: DbExtensions
Assembly: DbExtensions.dll
Syntax
public static class SQL
The SQL type exposes the following members.
Methods
| Name | Description |
|---|---|
| DELETE_FROM(SqlBuilder.ClauseStringHandler<DELETE_FROM>) | Creates and returns a new SqlBuilder initialized by appending the DELETE FROM clause using the provided string interpolated handler. |
| DELETE_FROM(String) | Creates and returns a new SqlBuilder initialized by appending the DELETE FROM clause using the provided text. |
| INSERT_INTO(SqlBuilder.ClauseStringHandler<INSERT_INTO>) | Creates and returns a new SqlBuilder initialized by appending the INSERT INTO clause using the provided string interpolated handler. |
| INSERT_INTO(String) | Creates and returns a new SqlBuilder initialized by appending the INSERT INTO clause using the provided text. |
| SELECT(SqlBuilder.ClauseStringHandler<SELECT>) | Creates and returns a new SqlBuilder initialized by appending the SELECT clause using the provided string interpolated handler. |
| SELECT(String) | Creates and returns a new SqlBuilder initialized by appending the SELECT clause using the provided text. |
| UPDATE(SqlBuilder.ClauseStringHandler<UPDATE>) | Creates and returns a new SqlBuilder initialized by appending the UPDATE clause using the provided string interpolated handler. |
| UPDATE(String) | Creates and returns a new SqlBuilder initialized by appending the UPDATE clause using the provided text. |
| WITH(SqlBuilder.ClauseStringHandler<WITH>) | Creates and returns a new SqlBuilder initialized by appending the WITH clause using the provided string interpolated handler. |
| WITH(String) | Creates and returns a new SqlBuilder initialized by appending the WITH clause using the provided text. |
| WITH(String, SqlBuilder) | Creates and returns a new SqlBuilder initialized by appending the WITH clause using the provided subQuery and alias. |
| WITH(String, SqlSet) | Creates and returns a new SqlBuilder initialized by appending the WITH clause using the provided subQuery and alias. |