mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-26 08:24:54 +01:00
22 lines
398 B
C#
22 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;
|
|
}
|
|
}
|
|
}
|
|
}
|