Table of Contents

Enum BindingType

Namespace
YndigoBlue.Velocity.Enums
Assembly
YndigoBlue.Velocity.dll

Specifies how C# object properties are mapped to database column names.

public enum BindingType

Fields

Attribute = 0

Uses VelocityField attributes to explicitly map properties to columns.

DirectMap = 1

Direct one-to-one mapping using exact property names as column names.

CamelCase = 2

Maps properties using camelCase naming convention.

PascalCase = 3

Maps properties using PascalCase naming convention.

SnakeCase = 4

Maps properties using snake_case naming convention.

Remarks

Velocity supports automatic binding between .NET objects and database records. The binding type controls the naming convention used for mapping properties to columns.