Skip to content

TQueryTableExtensions_CreateTable_WFVZnTZZASW7UJuVFjlpUw

Jacob Spitzer edited this page Aug 28, 2022 · 2 revisions

TQueryTableExtensions.CreateTable<Table>(DbEcExtended<Table>) Method

Creates a Table on the server database, based on the code table properties. Supported attributes are: [Key] for Primary Key, [AutoIncrement] for Auto Increment property, [Required] for Not Null property.

public static DbEasyConnect.DbEcCreate<Table> CreateTable<Table>(this DbEasyConnect.DbEcExtended<Table> tQuery);

Type parameters

Table
The type of the records of table class. need to be a class with the [Table("")] attribute.

Parameters

tQuery DbEasyConnect.DbEcExtended<Table>
An DbEcExtended<T> to perform the Create Table command.

Returns

DbEasyConnect.DbEcCreate<Table>
An DbEcCreate<T> instance, which the SQL command will Create the Table in the database, and Execute() will execute the Create Table command.

Clone this wiki locally