No, they are the same thing.
I disassembled SqlConnection.CreateCommand and found this:
public SqlCommand CreateCommand()
{
return new SqlCommand(null, this);
}
which proves that they really are the same thing.
No, they are the same thing.
I disassembled SqlConnection.CreateCommand and found this:
public SqlCommand CreateCommand()
{
return new SqlCommand(null, this);
}
which proves that they really are the same thing.