C# Class DbDictExport.Core.Codes.AbstractKdCodeFactory

Mostra file Open project: NeilQ/DbDictExport

Public Methods

Method Description
GenerateCodes ( ) : StringBuilder
ToCamelCase ( string value ) : string

Convert to camel case.

ToPascalCase ( string value ) : string

Convert value to Pascal case.

Protected Methods

Method Description
GetIndentStr ( int indent ) : string
MapCSharpType ( string dbtype ) : string

Private Methods

Method Description
IsSeparatorChar ( char value ) : bool
NoLowerCase ( string value ) : bool

Method Details

GenerateCodes() public abstract method

public abstract GenerateCodes ( ) : StringBuilder
return StringBuilder

GetIndentStr() protected method

protected GetIndentStr ( int indent ) : string
indent int
return string

MapCSharpType() protected method

protected MapCSharpType ( string dbtype ) : string
dbtype string
return string

ToCamelCase() public static method

Convert to camel case.
public static ToCamelCase ( string value ) : string
value string
return string

ToPascalCase() public static method

Convert value to Pascal case.
public static ToPascalCase ( string value ) : string
value string
return string