Request information about movie from IMDB.
namespace MovieNavigator.Core.DbContext
{
public enum TableSearchStatistics
{
ROWID,
Query,
FoundItems,
SearchDate
}
public static class TableSearchStatisticsHelper
{
public static string ToName(this TableSearchStatistics option)
{
switch (option)
{
default:
return option.ToString();
case TableSearchStatistics.ROWID:
return "Id";
case TableSearchStatistics.Query:
return "Query";
case TableSearchStatistics.FoundItems:
return "FoundItems";
case TableSearchStatistics.SearchDate:
return "SearchDate";
}
}
}
}