Add locale and account to search/filter options

This commit is contained in:
Robert McRackan 2020-08-27 15:33:14 -04:00
parent 9a1fa89f6f
commit 20b6f28cb5
4 changed files with 94 additions and 89 deletions

View file

@ -72,7 +72,12 @@ namespace LibationSearchEngine
["CategoriesId"] = lb => lb.Book.CategoriesIds == null ? null : string.Join(", ", lb.Book.CategoriesIds),
["CategoryId"] = lb => lb.Book.CategoriesIds == null ? null : string.Join(", ", lb.Book.CategoriesIds),
[TAGS.FirstCharToUpper()] = lb => lb.Book.UserDefinedItem.Tags
[TAGS.FirstCharToUpper()] = lb => lb.Book.UserDefinedItem.Tags,
["Locale"] = lb => lb.Book.Locale,
["Region"] = lb => lb.Book.Locale,
["Account"] = lb => lb.Account,
["Email"] = lb => lb.Account
}
);