zoukankan      html  css  js  c++  java
  • 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. *
    *****************************************************
  • 相关阅读:
    ASP.NET自动给URL加上超链接
    EXCEL隔行相加
    数据库 行列相互转化
    SQL获取所有用户名,数据库名、所有表名、所有字段名及字段类型
    C#中,Dictionary的使用方法
    NET技术.NET各大网站编程技术网址
    多表查询不同数据库服务器上的表
    关于quotename的用法
    SQL Server2005 异常处理机制(Begin try Begin Catch)
    C#异步调用与线程总结
  • 原文地址:https://www.cnblogs.com/gangle/p/15022677.html
Copyright © 2011-2022 走看看