Exemplo n.º 1
0
 internal void Push()
 {
     if (IsRowId)
     {
         return;
     }
     SQLColumn.Push();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a column from a CLR PropertyInfo
 /// </summary>
 internal ColumnMapping(TableMapping tableMapping, CLRProperty clrProperty, SQLColumn sqlColumn)
 {
     TableMapping = tableMapping;
     CLRProperty  = clrProperty;
     SQLColumn    = sqlColumn;
     IsRowId      = sqlColumn.IsRowId;
     SQLColumn?.SetMapping(this);
     CLRProperty?.SetMapping(this);
 }