Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsAutoIncrement

bool System.Data.Common.DbSchemaRow.IsAutoIncrement
getpackage

Definition at line 120 of file DbSchemaRow.cs.

121 {
122 get
123 {
124 if (_schemaTable.IsAutoIncrement != null)
125 {
127 if (!Convert.IsDBNull(value))
128 {
129 return Convert.ToBoolean(value, CultureInfo.InvariantCulture);
130 }
131 }
132 return false;
133 }
134 }
readonly DbSchemaTable _schemaTable
Definition DbSchemaRow.cs:8
static CultureInfo InvariantCulture

Referenced by System.Data.Common.DbCommandBuilder.IncludeInInsertValues(), and System.Data.Common.DbCommandBuilder.IncludeInUpdateSet().