mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-31 20:15:55 +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();";
|
|
}
|
|
}
|
|
}
|
|
}
|