///<Summary> ///Select all rows by filter criteria ///This method returns all data rows in the table using criteriaquery api identityrole ///</Summary> ///<returns> ///List-IDAOIdentityrole. ///</returns> ///<parameters> ///IList<IDataCriterion> listCriterion, IList<IDataOrderBy> listOrder, IDataSkip dataSkip, IDataTake dataTake ///</parameters> public static List <IDAOIdentityrole> SelectAllByCriteria(IList <IDataCriterion> listCriterion, IList <IDataOrderBy> listOrder, IDataSkip dataSkip, IDataTake dataTake) { Doing(null); MySqlCommand command = new MySqlCommand(); command.CommandText = "ctpr_identityrole_getbycriteria"; command.CommandType = CommandType.StoredProcedure; MySqlConnection staticConnection = StaticSqlConnection; command.Connection = staticConnection; DataTable dt = new DataTable("identityrole"); MySqlDataAdapter sqlAdapter = new MySqlDataAdapter(command); try { string whereClause = GetSelectionCriteria(listCriterion); string orderClause = GetSelectionOrder(listOrder); string skipClause = GetSelectionSkip(dataSkip); string takeClause = GetSelectionTake(dataTake); command.Parameters.Add(new MySqlParameter("?P_SKİPCLAUSE", MySqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Proposed, (object)skipClause ?? (object)DBNull.Value)); command.Parameters.Add(new MySqlParameter("?P_TAKECLAUSE", MySqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Proposed, (object)takeClause ?? (object)DBNull.Value)); command.Parameters.Add(new MySqlParameter("?P_WHERECLAUSE", MySqlDbType.VarChar, 500, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Proposed, (object)whereClause ?? (object)DBNull.Value)); command.Parameters.Add(new MySqlParameter("?P_ORDERCLAUSE", MySqlDbType.VarChar, 500, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Proposed, (object)orderClause ?? (object)DBNull.Value)); command.Parameters.Add(new MySqlParameter("?P_SKİPCLAUSE", MySqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Proposed, (object)skipClause ?? (object)DBNull.Value)); command.Parameters.Add(new MySqlParameter("?P_TAKECLAUSE", MySqlDbType.VarChar, 50, ParameterDirection.Input, false, 0, 0, "", DataRowVersion.Proposed, (object)takeClause ?? (object)DBNull.Value)); staticConnection.Open(); sqlAdapter.Fill(dt); Done(null); List <IDAOIdentityrole> objList = new List <IDAOIdentityrole>(); if (dt.Rows.Count > 0) { foreach (DataRow row in dt.Rows) { DAOIdentityrole retObj = new DAOIdentityrole(); retObj._ıd = Convert.IsDBNull(row["Id"]) ? null : (string)row["Id"]; retObj._name = Convert.IsDBNull(row["Name"]) ? null : (string)row["Name"]; retObj._ctrVersion = Convert.IsDBNull(row["ctr_version"]) ? null : (string)row["ctr_version"]; objList.Add(retObj); } } return(objList); } catch (Exception ex) { Failed(null, ex); Handle(null, ex); return(null); } finally { staticConnection.Close(); command.Dispose(); } }
///<Summary> ///Select all rows ///This method returns all data rows in the table identityrole ///</Summary> ///<returns> ///List-IDAOIdentityrole. ///</returns> ///<parameters> /// ///</parameters> public static List <IDAOIdentityrole> SelectAll() { Doing(null); MySqlCommand command = new MySqlCommand(); command.CommandText = "ctpr_identityrole_getall"; command.CommandType = CommandType.StoredProcedure; MySqlConnection staticConnection = StaticSqlConnection; command.Connection = staticConnection; DataTable dt = new DataTable("identityrole"); MySqlDataAdapter sqlAdapter = new MySqlDataAdapter(command); try { staticConnection.Open(); sqlAdapter.Fill(dt); Done(null); List <IDAOIdentityrole> objList = new List <IDAOIdentityrole>(); if (dt.Rows.Count > 0) { foreach (DataRow row in dt.Rows) { DAOIdentityrole retObj = new DAOIdentityrole(); retObj._ıd = Convert.IsDBNull(row["Id"]) ? null : (string)row["Id"]; retObj._name = Convert.IsDBNull(row["Name"]) ? null : (string)row["Name"]; retObj._ctrVersion = Convert.IsDBNull(row["ctr_version"]) ? null : (string)row["ctr_version"]; objList.Add(retObj); } } return(objList); } catch (Exception ex) { Failed(null, ex); Handle(null, ex); return(null); } finally { staticConnection.Close(); command.Dispose(); } }
///<Summary> ///Select one row by primary key(s) ///This method returns one row from the table identityrole based on the primary key(s) ///</Summary> ///<returns> ///IDAOIdentityrole ///</returns> ///<parameters> ///string ıd ///</parameters> public static IDAOIdentityrole SelectOne(string ıd) { Doing(null); MySqlCommand command = new MySqlCommand(); command.CommandText = "ctpr_identityrole_getone"; command.CommandType = CommandType.StoredProcedure; MySqlConnection staticConnection = StaticSqlConnection; command.Connection = staticConnection; DataTable dt = new DataTable("identityrole"); MySqlDataAdapter sqlAdapter = new MySqlDataAdapter(command); try { command.Parameters.Add(new MySqlParameter("?P_ID", MySqlDbType.VarChar, 0, ParameterDirection.Input, false, 10, 0, "", DataRowVersion.Proposed, (object)ıd ?? (object)DBNull.Value)); staticConnection.Open(); sqlAdapter.Fill(dt); Done(null); DAOIdentityrole retObj = null; if (dt.Rows.Count > 0) { retObj = new DAOIdentityrole(); retObj._ıd = Convert.IsDBNull(dt.Rows[0]["Id"]) ? null : (string)dt.Rows[0]["Id"]; retObj._name = Convert.IsDBNull(dt.Rows[0]["Name"]) ? null : (string)dt.Rows[0]["Name"]; retObj._ctrVersion = Convert.IsDBNull(dt.Rows[0]["ctr_version"]) ? null : (string)dt.Rows[0]["ctr_version"]; } return(retObj); } catch (Exception ex) { Failed(null, ex); Handle(null, ex); return(null); } finally { staticConnection.Close(); command.Dispose(); } }