1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-14 23:13:24 +01:00
Radarr/Marr.Data/QGen/Dialects/SqlServerDialect.cs

14 lines
257 B
C#
Raw Normal View History

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