Skip to content

Commit

Permalink
Fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
theandrunique committed Feb 11, 2024
1 parent 8913f11 commit 138648f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UniqModel.MySql/MySqlDatabaseProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public async Task CloseReaderAsync(IDataReader reader)
}
public string GetLastInsertRowId()
{
return "SELECT LAST_INSERT_ID();";
return "SELECT LAST_INSERT_ID()";
}
public string GetAutoIncrementWithType()
{
Expand Down
2 changes: 1 addition & 1 deletion UniqModel.MySql/UniqModel.MySql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RepositoryUrl>https://github.com/theandrunique/dotnet_orm</RepositoryUrl>
<ImplicitUsings>disable</ImplicitUsings>
<IsPublishable>True</IsPublishable>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 138648f

Please sign in to comment.