GenerateSelectQuery<T>(string, List<string>, string) Method
Generates a SELECT query for retrieving data from a database table.
Namespace
DbSyncKit.Templates
Containing Type
QueryGenerationManager
Implements

Syntax

public string GenerateSelectQuery<T>(string tableName, List<string> listOfColumns, string schemaName)

Type Parameters

Name Description
T

Parameters

Name Type Description
tableName string The name of the database table.
listOfColumns List<string>
schemaName string The schema name of the database table.

Return Value

Type Description
string A string representing the generated SELECT query.