mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-31 21:03:38 +01: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();";
|
|
}
|
|
}
|
|
}
|
|
}
|