1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/Marr.Data/QGen/Dialects/SqlServerDialect.cs

14 lines
257 B
C#
Raw Normal View History

2013-07-19 06:47:55 +03:00
namespace Marr.Data.QGen.Dialects
{
public class SqlServerDialect : Dialect
{
public override string IdentityQuery
{
get
{
return "SELECT SCOPE_IDENTITY();";
}
}
}
}