mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00:00
21 lines
398 B
C#
21 lines
398 B
C#
namespace Marr.Data.QGen.Dialects
|
|
{
|
|
public class SqlServerCeDialect : Dialect
|
|
{
|
|
public override string IdentityQuery
|
|
{
|
|
get
|
|
{
|
|
return "SELECT @@IDENTITY;";
|
|
}
|
|
}
|
|
|
|
public override bool SupportsBatchQueries
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|