System.Data.SqlClient.SqlCommandBuilder.IncludedInUpdate C# (CSharp) 메소드

IncludedInUpdate() 개인적인 메소드

private IncludedInUpdate ( DataRow schemaRow ) : bool
schemaRow System.Data.DataRow
리턴 bool
		private bool IncludedInUpdate (DataRow schemaRow)
		{
			// If the parameter has one of these properties, then we don't include it in the insert:
			// AutoIncrement, Hidden, RowVersion

			if ((bool) schemaRow ["IsAutoIncrement"])
				return false;
			if ((bool) schemaRow ["IsHidden"])
				return false;
			if ((bool) schemaRow ["IsRowVersion"])
				return false;
			return true;
		}