• 服务层


    服务项目
    我的业务层代码,用查找替换的方式就能很轻松的完成对表的一般性操作.
        public  class ProductCateCateService
        
    {
            
    public static void Save(ProductCate d)
            
    {
                NBearData.DB().Save(d);
            }

            
    public static void Del(int id)
            
    {
                NBearData.DB().Delete
    <ProductCate>(id);
            }

            
    public static ProductCate GetOne(int id)
            
    {
                
    return NBearData.DB().Find<ProductCate>(id);
            }

            
    public static int GetCount()
            
    {
                
    return NBearData.DB().From<ProductCate>().ToArray<ProductCate>().Length;
            }


            
    public static ProductCate[] GetAll()
            
    {
                
    return NBearData.DB().From<ProductCate>().ToArray<ProductCate>();
            }

            
    public static ProductCate[] GetAll(int pz, int pn)
            
    {
                
    return NBearData.DB().From<ProductCate>().ToArray<ProductCate>(pz, (pn - 1* pz);
            }

            
    public static ProductCate[] GetAll(WhereClip w)
            
    {
                
    return NBearData.DB().From<ProductCate>().Where(w).ToArray<ProductCate>();
            }

            
    public static ProductCate[] GetAll(WhereClip w, int pz, int pn)
            
    {
                
    return NBearData.DB().From<ProductCate>().Where(w).ToArray<ProductCate>(pz, (pn - 1* pz);
            }


        }

  • 相关阅读:
    21 Python 3 GUI Programming (Tkinter)
    Python 3 Mock Test III
    Sring Boot 使用Spring Initializr创建项目(IDEA 2021)
    小学数学奥数题
    22 Python 3 Turtle
    Python 3 Questions
    Python 爬虫入门
    Python 3 Mock Test II
    Spring 一个简单的Spring程序
    14 Python 3 Sets
  • 原文地址:https://www.cnblogs.com/zq535228/p/1085497.html
Copyright © 2020-2023  润新知