1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-31 19:32:51 +00:00
Lidarr/Marr.Data/QGen/Dialects/SqlServerDialect.cs

18 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();";
}
}
}
}