mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-01 14:29:04 +00:00
14 lines
257 B
C#
14 lines
257 B
C#
namespace Marr.Data.QGen.Dialects
|
|
{
|
|
public class SqlServerDialect : Dialect
|
|
{
|
|
public override string IdentityQuery
|
|
{
|
|
get
|
|
{
|
|
return "SELECT SCOPE_IDENTITY();";
|
|
}
|
|
}
|
|
}
|
|
}
|