• DAL class methods definition


    Create

    Object Insert<T>(T obj) where T : class, new()
    Object InsertByComplexPk<T>(T obj) where T : class, new()
    Boolean BulkInsert<T>(IList<T> list) where T : class, new()


    Retrieve

    IQuery<T> GetQuery<T>() where T : class, new()
    IList<T> GetAll<T>() where T : class, new()
    IList<T> SelectListOfSingleField<T>(String sql)
    IList<T> SelectList<T>(String sql) where T : class, new()
    IList<T> SelectList<T>(IQuery query) where T : class, new()
    IList<T> SelectListByAdapter<T>(String sql) where T : class, new()
    IList<T> SelectListByAdapter<T>(IQuery query) where T : class, new()
    IList<T> ExecListBySp<T>(String procName, StatementParameterCollection parameters) where T : class, new()

    T GetByKey<T>(Object key) where T : class, new()
    T SelectFirst<T>(String sql) where T : class, new()
    T SelectFirst<T>(IQuery query) where T : class, new()
    T VisitDataReader<T>(String sql, Func<IDataReader, T> callback)
    T VisitDataReaderBySp<T>(String procName, StatementParameterCollection parameters, Func<IDataReader, T> callback)

    DataTable SelectDataTable(String sql)
    DataTable ExecDataTableBySp(String procName, StatementParameterCollection parameters)
    DataSet SelectDataSet(String sql)
    DataSet SelectDataSet<T>(IQuery query) where T : class, new()
    DataSet ExecDataSetBySp(String procName, StatementParameterCollection parameters)
    IDataReader SelectDataReader(String sql)
    IDataReader ExecDataReaderBySp(String procName, StatementParameterCollection parameters)
    Object ExecScalar(String sql)
    Object ExecScalarBySp(String procName, StatementParameterCollection parameters)

    Update

    Int32 Update<T>(T obj) where T : class, new()
    IUpdatePartial<T> GetUpdatePartially<T>() where T : class, new()
    Int32 UpdatePartially<T>(IUpdatePartial<T> partially, T obj) where T : class, new()
    Int32 ExecNonQuery(String sql)
    void ExecSp(String procName, StatementParameterCollection parameters)


    Delete

    Int32 Delete<T>(T obj) where T : class, new()

    *****************************************************
    * No matter how far you go, looking back is also necessary. *
    *****************************************************
  • 相关阅读:
    API函数
    平台调用教程
    查看网页源文件方法
    网页端商品链接转换为手机端链接的部分网址规则
    中文分词消除歧义简单思想
    java 链接数据库时的配置代码
    手机参数更新语句根据Id 可以得到某手机的各种参数
    中文分词—基于Lucene的分词器—支持中英文混合词
    修改Imdict做自己的分词器
    制作可输入的下拉框
  • 原文地址:https://www.cnblogs.com/gangle/p/15022677.html
Copyright © 2020-2023  润新知