Click or drag to resize

SQLiteConnectionGetMapping Method (Type, CreateFlags)

Retrieves the mapping that is automatically generated for the given type.

Namespace:  SQLite
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public TableMapping GetMapping(
	Type type,
	CreateFlags createFlags = CreateFlags.None
)

Parameters

type
Type: SystemType
The type whose mapping to the database is returned.
createFlags (Optional)
Type: SQLiteCreateFlags
Optional flags allowing implicit PK and indexes based on naming conventions

Return Value

Type: TableMapping
The mapping represents the schema of the columns of the database and contains methods to set and get properties of objects.
See Also