Upgraded to latest version of MySql.Data package. Added code to not try set the value of the primary key if it's not auto increment.

This commit is contained in:
MattMo 2024-03-16 09:31:33 -07:00
parent a796113329
commit 08113eef6e
2 changed files with 10 additions and 7 deletions

View File

@ -7,7 +7,7 @@
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
<Title>MontoyaTech.MySqlPlus</Title>
<Version>1.1.6</Version>
<Version>1.1.7</Version>
<Company>MontoyaTech</Company>
<Description>A simple C# library to help work with MySql.</Description>
<Copyright>MontoyaTech 2023</Copyright>
@ -27,7 +27,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="MySql.Data" Version="8.0.32" />
<PackageReference Include="MySql.Data" Version="8.3.0" />
</ItemGroup>
</Project>

View File

@ -69,13 +69,16 @@ namespace MontoyaTech.MySqlPlus
this.Connection.ExecuteNonQuery(command);
//Update the primary key value on the row if we can find it.
//Update the primary key value on the row if it auto increments.
if (row.GetMySqlPrimaryKey(out FieldInfo primaryField, out MySqlColumn primaryColumn))
{
if (Type.GetTypeCode(primaryField.FieldType) == TypeCode.UInt64)
primaryField.SetValue(row, (ulong)command.LastInsertedId);
else
primaryField.SetValue(row, command.LastInsertedId);
if (primaryColumn.AutoIncrement)
{
if (Type.GetTypeCode(primaryField.FieldType) == TypeCode.UInt64)
primaryField.SetValue(row, (ulong)command.LastInsertedId);
else
primaryField.SetValue(row, command.LastInsertedId);
}
}
return (ulong)command.LastInsertedId;