fix name starts with query

This commit is contained in:
Luke Pulverenti 2016-05-05 22:31:35 -04:00
parent cbd076d106
commit 242fb3c770

View file

@ -2097,14 +2097,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
}
if (!string.IsNullOrWhiteSpace(query.NameStartsWith))
{
if (_config.Configuration.SchemaVersion >= 66)
{
whereClauses.Add("CleanName like @NameStartsWith");
}
else
{
whereClauses.Add("Name like @NameStartsWith");
}
whereClauses.Add("SortName like @NameStartsWith");
cmd.Parameters.Add(cmd, "@NameStartsWith", DbType.String).Value = query.NameStartsWith + "%";
}
if (!string.IsNullOrWhiteSpace(query.NameStartsWithOrGreater))