J
jiangyh
hi everyone:
SqlParameter class has a property that is DbType looks like following source
public DbType DbType
{
get
{
// TODO: Add DBParameter.DbType getter implementation
return new DbType ();
}
set
{
// TODO: Add DBParameter.DbType setter implementation
}
}
I must define a variant for this property ,my question is which type variant I will use.
thanks a lot
jiangyh
SqlParameter class has a property that is DbType looks like following source
public DbType DbType
{
get
{
// TODO: Add DBParameter.DbType getter implementation
return new DbType ();
}
set
{
// TODO: Add DBParameter.DbType setter implementation
}
}
I must define a variant for this property ,my question is which type variant I will use.
thanks a lot
jiangyh