1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 21:24:56 +00:00
Sonarr/Marr.Data/QGen/Dialects/SqlServerDialect.cs
2013-07-18 20:47:55 -07:00

13 lines
257 B
C#

namespace Marr.Data.QGen.Dialects
{
public class SqlServerDialect : Dialect
{
public override string IdentityQuery
{
get
{
return "SELECT SCOPE_IDENTITY();";
}
}
}
}