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

◆ IsLong

bool System.Data.Common.DbSchemaRow.IsLong
getpackage

Definition at line 216 of file DbSchemaRow.cs.

217 {
218 get
219 {
220 if (_schemaTable.IsLong != null)
221 {
223 if (!Convert.IsDBNull(value))
224 {
225 return Convert.ToBoolean(value, CultureInfo.InvariantCulture);
226 }
227 }
228 return false;
229 }
230 }
readonly DbSchemaTable _schemaTable
Definition DbSchemaRow.cs:8
static CultureInfo InvariantCulture

Referenced by System.Data.Common.DbCommandBuilder.BuildInformation(), and System.Data.Common.DbCommandBuilder.IncrementWhereCount().