mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-26 16:26:38 +01:00
added marr.datamapper source code for easy debugging.
This commit is contained in:
26
Marr.Data/QGen/Dialects/SqlServerCeDialect.cs
Normal file
26
Marr.Data/QGen/Dialects/SqlServerCeDialect.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Marr.Data.QGen.Dialects
|
||||
{
|
||||
public class SqlServerCeDialect : Dialect
|
||||
{
|
||||
public override string IdentityQuery
|
||||
{
|
||||
get
|
||||
{
|
||||
return "SELECT @@IDENTITY;";
|
||||
}
|
||||
}
|
||||
|
||||
public override bool SupportsBatchQueries
|
||||
{
|
||||
get
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user