mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -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
|
@ -55,5 +55,20 @@ namespace Marr.Data.QGen.Dialects
|
|||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
public virtual string StartsWithFormat
|
||||
{
|
||||
get { return "({0} LIKE {1} + '%')"; }
|
||||
}
|
||||
|
||||
public virtual string EndsWithFormat
|
||||
{
|
||||
get { return "({0} LIKE '%' + {1})"; }
|
||||
}
|
||||
|
||||
public virtual string ContainsFormat
|
||||
{
|
||||
get { return "({0} LIKE '%' + {1} + '%')"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue