mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
rebased with Marr.Data
there is a broken test.
This commit is contained in:
parent
6e6df842a0
commit
261ce772de
8 changed files with 199 additions and 58 deletions
|
@ -14,5 +14,20 @@ namespace Marr.Data.QGen.Dialects
|
|||
return "SELECT last_insert_rowid();";
|
||||
}
|
||||
}
|
||||
|
||||
public override string StartsWithFormat
|
||||
{
|
||||
get { return "({0} LIKE {1} || '%')"; }
|
||||
}
|
||||
|
||||
public override string EndsWithFormat
|
||||
{
|
||||
get { return "({0} LIKE '%' || {1})"; }
|
||||
}
|
||||
|
||||
public override string ContainsFormat
|
||||
{
|
||||
get { return "({0} LIKE '%' || {1} || '%')"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue