mirror of https://github.com/Radarr/Radarr
19 lines
344 B
C#
19 lines
344 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Marr.Data.QGen.Dialects
|
|||
|
{
|
|||
|
public class SqlServerDialect : Dialect
|
|||
|
{
|
|||
|
public override string IdentityQuery
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return "SELECT SCOPE_IDENTITY();";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|