-
Notifications
You must be signed in to change notification settings - Fork 0
Izayoi.Data.Query.Insert
IzayoiJiichan edited this page Aug 16, 2024
·
3 revisions
Namespace | Izayoi.Data.Query |
Assembly | Izayoi.Data.Query.dll |
Represents a Insert source.
public class Insert
Object -> Insert
Name | Summary |
---|---|
Insert() | Initializes an instance of the Insert class. |
Insert(string tableName) | Initializes a new instance of the Insert class with the specified tableName. |
Insert(string tableName, string tableAlias) | Initializes an instance of the Insert class with the specified tableName and tableAlias. |
Insert(string schemaName, string tableName, string tableAlias) | Initializes an instance of the Insert class with the specified schemaName, tableName and tableAlias. |
INSERT clause
VALUES clause
It cannot be used when using the SELECT clause.
column list
Use only when using a SELECT clause.
SELECT clause (dml table source)
It cannot be used when using the VALUES clause.
Name | Returns |
---|---|
SetInto(string tableName) | Insert |
SetInto(string tableName, string tableAlias) | Insert |
SetInto(string schemaName, string tableName, string tableAlias) | Insert |
AddColumn(string columnName) | Insert |
AddValue(Value value) | Insert |
AddValue(string columnName, object? value) | Insert |
AddValue(string columnName, object? value, DbType dbType) | Insert |
AddValue(string columnName, object? value, bool isExpression) | Insert |
ClearValues() | Insert |
- Izayoi.Data
- Izayoi.Data.Query
- Izayoi.Data.Repository
- Izayoi.Data.Comparable
- Izayoi.Data.Packs
- Izayoi.Data.TimestampedObjects
- Izayoi.Data.Validation
Examples
- Database
- Map Class
- DbCommandAdapter
- DbDataMapper
- QueryOption
- QueryBuilder
- DbRepository
- Comparable
- Packs
- Timestamped Objects
- DataValidator
FAQ