mirror of
https://github.com/Radarr/Radarr
synced 2025-03-04 10:48:42 +00:00
13 lines
257 B
C#
13 lines
257 B
C#
namespace Marr.Data.QGen.Dialects
|
|
{
|
|
public class SqlServerDialect : Dialect
|
|
{
|
|
public override string IdentityQuery
|
|
{
|
|
get
|
|
{
|
|
return "SELECT SCOPE_IDENTITY();";
|
|
}
|
|
}
|
|
}
|
|
}
|