本文整理汇总了C#中CategoryType.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# CategoryType.ToString方法的具体用法?C# CategoryType.ToString怎么用?C# CategoryType.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CategoryType
的用法示例。
在下文中一共展示了CategoryType.ToString方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetProductByPage
public List<Product> GetProductByPage(int Page, int PageSize, CategoryType ct, bool IsDESC)
{
SqlParameter[] sprms = new SqlParameter[] {
new SqlParameter("@CategoryType", ct.ToString()),
new SqlParameter("@PageNumber",Page),
new SqlParameter("@PageSize",PageSize)
};
DataTable dt = _dataAccess.Query("ProductAPI_GetProductsByPage", sprms);
return EntityHelper<Product>.ConvertToList(dt);
}
示例2: GetCategoriesForType
public ICategory[] GetCategoriesForType(CategoryType type)
{
var requestPath = RequestPathForAction(string.Format("categories.xml?type={0}", type.ToString().ToLower()));
var categories = new List<ICategory>();
try
{
foreach (JObject node in _service.GetRequestResponseElement(requestPath))
{
categories.Add(Category.GetInstance(Camp, node));
}
}
catch
{
return categories.ToArray();
}
return categories.ToArray();
}
示例3: TotalPage
public int TotalPage(CategoryType ct)
{
SqlParameter[] sprms = new SqlParameter[] { new SqlParameter("@CategoryType", ct.ToString()) };
DataTable dt = _dataAccess.Query("ProductAPI_TotalPages", sprms);
return int.Parse(dt.Rows[0][0].ToString());
}
示例4: GetNamesByType
public List<String> GetNamesByType(CategoryType categoryType)
{
string aux = categoryType.ToString();
return dbContext.Categories.Where(x => x.Type == aux).Select(x => x.Name).ToList();
}
示例5: GetByType
public List<CategoryModel> GetByType(CategoryType categoryType)
{
string aux = categoryType.ToString();
return dbContext.Categories.Where(x => x.Type == aux).ToList();
}