コード例 #1
0
 internal async Task Push()
 {
     if (IsRowId)
     {
         return;
     }
     await SQLColumn.Push().ConfigureAwait(false);
 }
コード例 #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);
 }