mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-25 01:02:05 +00:00
added check for marr data to throw a more meaning full exception when trying to operate on an unmapped column.
This commit is contained in:
parent
2f42e7dd83
commit
bfb167c374
1 changed files with 6 additions and 0 deletions
|
@ -84,6 +84,12 @@ public static string GetColumnName(Type declaringType, string propertyName, bool
|
|||
string columnName = propertyName;
|
||||
|
||||
var columnMap = MapRepository.Instance.GetColumns(declaringType).GetByFieldName(propertyName);
|
||||
|
||||
if (columnMap == null)
|
||||
{
|
||||
throw new InvalidOperationException(string.Format("Column map missing for field {0}.{1}", declaringType.FullName, propertyName));
|
||||
}
|
||||
|
||||
if (useAltName)
|
||||
{
|
||||
columnName = columnMap.ColumnInfo.TryGetAltName();
|
||||
|
|
Loading…
Reference in a new issue