Interface defining templates for different types of SQL queries.
- Namespace
- DbSyncKit
.Templates .Interface - Implementing Types
graph BT
Type["IQueryTemplates"]
class Type type-node
Implementing0["QueryTemplates"]-.->Type
click Implementing0 "/api/DbSyncKit.Templates.SQLite/QueryTemplates"
Implementing1["QueryTemplates"]-.->Type
click Implementing1 "/api/DbSyncKit.Templates.PostgreSQL/QueryTemplates"
Implementing2["QueryTemplates"]-.->Type
click Implementing2 "/api/DbSyncKit.Templates.MySql/QueryTemplates"
Implementing3["QueryTemplates"]-.->Type
click Implementing3 "/api/DbSyncKit.Templates.MSSQL/QueryTemplates"
Syntax
public interface IQueryTemplates
Properties
Name | Property Type | Summary |
---|---|---|
CommentTemplate | IFluidTemplate |
Gets the template for a COMMENT template.
|
DeleteTemplate | IFluidTemplate |
Gets the template for a DELETE template.
|
InsertTemplate | IFluidTemplate |
Gets the template for an INSERT template.
|
SelectTemplate | IFluidTemplate |
Gets the template for a SELECT template.
|
UpdateTemplate | IFluidTemplate |
Gets the template for an UPDATE template.
|