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

◆ IncludeInInsertValues()

bool System.Data.Common.DbCommandBuilder.IncludeInInsertValues ( DbSchemaRow row)
inlineprivate

Definition at line 1115 of file DbCommandBuilder.cs.

1116 {
1117 if (!row.IsAutoIncrement && !row.IsHidden && !row.IsExpression && !row.IsRowVersion)
1118 {
1119 return !row.IsReadOnly;
1120 }
1121 return false;
1122 }

References System.Data.Common.DbSchemaRow.IsAutoIncrement, System.Data.Common.DbSchemaRow.IsExpression, System.Data.Common.DbSchemaRow.IsHidden, System.Data.Common.DbSchemaRow.IsReadOnly, and System.Data.Common.DbSchemaRow.IsRowVersion.

Referenced by System.Data.Common.DbCommandBuilder.BuildInsertCommand().