C# 클래스 MicroLite.Mapping.ColumnInfo

파일 보기 프로젝트 열기: TrevorPilley/MicroLite 1 사용 예제들

공개 메소드들

메소드 설명
ColumnInfo ( string columnName, DbType dbType, PropertyInfo propertyInfo, bool isIdentifier, bool allowInsert, bool allowUpdate, string sequenceName ) : System

Initialises a new instance of the ColumnInfo class.

메소드 상세

ColumnInfo() 공개 메소드

Initialises a new instance of the ColumnInfo class.
Thrown if columnName or propertyInfo are null.
public ColumnInfo ( string columnName, DbType dbType, PropertyInfo propertyInfo, bool isIdentifier, bool allowInsert, bool allowUpdate, string sequenceName ) : System
columnName string The name of the column in the database table.
dbType DbType The of the column in the database table.
propertyInfo System.Reflection.PropertyInfo The property info for the property the column maps to.
isIdentifier bool A value indicating whether column is the table identifier column (primary key).
allowInsert bool true if the column can be inserted, otherwise false.
allowUpdate bool true if the column can be updated, otherwise false.
sequenceName string The name of the sequence which generates the identifier value or null if sequences are not used.
리턴 System