• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# QueryHelper类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中QueryHelper的典型用法代码示例。如果您正苦于以下问题:C# QueryHelper类的具体用法?C# QueryHelper怎么用?C# QueryHelper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



QueryHelper类属于命名空间,在下文中一共展示了QueryHelper类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: Absence_EmailNotification

        public Absence_EmailNotification()
        {
            InitializeComponent();

            Access = new AccessHelper();
            Query = new QueryHelper();
        }
开发者ID:jungfengpaulwang,项目名称:EMBACore,代码行数:7,代码来源:Absence_EmailNotification.cs


示例2: OnPrimaryKeyChangedAsync

 protected override void OnPrimaryKeyChangedAsync()
 {
     string studentID = this.PrimaryKey;
     //1.取得修課紀錄
     QueryHelper q = new QueryHelper();
     string sql = @"select ref_course_id
                             from $ischool.emba.scattend_ext att inner join course c on c.id = att.ref_course_id
                             where att.ref_student_id={0} and c.school_year={1} and c.semester={2}";
     //string schoolyear = K12.Data.School.DefaultSchoolYear;
     //string semester = K12.Data.School.DefaultSemester;
     DataTable dt = q.Select(string.Format(sql, studentID, this.SchoolYear, this.Semester));
     this.attRecords = new List<string>();
     foreach (DataRow dr in dt.Rows)
     {
         this.attRecords.Add(dr[0].ToString());
     }
     this.attRecords = this.attRecords.Distinct().ToList();
     //2. 取得加退選紀錄
     AccessHelper ah = new AccessHelper();
     this.udtCourses = ah.Select<UDT.AddDropCourse>("ref_student_id='" + this.PrimaryKey + "' and confirm_date is null ");
     this.dicAddDropList = new Dictionary<string, UDT.AddDropCourse>();
     foreach (UDT.AddDropCourse addDrop in this.udtCourses)
     {
         if (!this.dicAddDropList.ContainsKey(addDrop.CourseID.ToString()))
             this.dicAddDropList.Add(addDrop.CourseID.ToString(), addDrop);
     }
 }
开发者ID:jungfengpaulwang,项目名称:EMBACore,代码行数:27,代码来源:Student_AddDropCourse.cs


示例3: frmEvaluationConfiguration

        public frmEvaluationConfiguration(bool QueryMode = true)
        {
            InitializeComponent();

            this.dgvData.CurrentCellDirtyStateChanged += new EventHandler(dgvData_CurrentCellDirtyStateChanged);
            this.dgvData.CellEnter += new DataGridViewCellEventHandler(dgvData_CellEnter);
            this.dgvData.EditingControlShowing += new DataGridViewEditingControlShowingEventHandler(dgvData_EditingControlShowing);
            this.dgvData.DataError += new DataGridViewDataErrorEventHandler(dgvData_DataError);
            this.dgvData.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_ColumnHeaderMouseClick);
            this.dgvData.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_RowHeaderMouseClick);
            this.dgvData.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dgvData_MouseClick);

            this.Load += new EventHandler(frmTeachingEvaluation_Load);
            dgvData.SortCompare += new DataGridViewSortCompareEventHandler(
                this.DataGridView_SortCompare);

            this.dicTeachersCases = new Dictionary<string, List<string>>();
            this.dicReplys = new Dictionary<string, UDT.Reply>();
            this.dicCourses = new Dictionary<string, CourseRecord>();
            this.dicCourseInstructors = new Dictionary<string, KeyValuePair<string, string>>();
            this.dicCases = new Dictionary<string, List<string>>();
            this.dicSurveys = new Dictionary<string, UDT.Survey>();
            this.dicAssignedSurveys = new Dictionary<string, UDT.AssignedSurvey>();

            this.QueryMode = QueryMode;

            Access = new AccessHelper();
            Query = new QueryHelper();
        }
开发者ID:jungfengpaulwang,项目名称:EMBATeachingEvaluation,代码行数:29,代码来源:frmEvaluationConfiguration.cs


示例4: SelectAll

        /// <summary>
        /// 取得科目中英文對照表
        /// </summary>
        /// <returns></returns>
        public static Dictionary<string,string> SelectAll()
        {
            //"科目中英文對照表"
            //<Content>
            //   <Subject Chinese="國文" English="Chinese"/>
            //   <Subject Chinese="英文" English="English"/>
            //</Content>

            QueryHelper helper = new QueryHelper();

            Dictionary<string, string> result = new Dictionary<string, string>();

            DataTable table = helper.Select("select * from list where name='科目中英文對照表'");

            if (table.Rows.Count == 1)
            {
                string Content = table.Rows[0].Field<string>("content");

                StringReader reader = new StringReader(Content);

                XElement Element = XElement.Load(reader);

                foreach (XElement elmSubject in Element.Elements("Subject"))
                {
                    string Chinese = elmSubject.AttributeText("Chinese");
                    string English = elmSubject.AttributeText("English");

                    if (!result.ContainsKey(Chinese))
                        result.Add(Chinese, English);
                }
            }

            return result;
       }
开发者ID:ChunTaiChen,项目名称:K12.Data,代码行数:38,代码来源:ChineseEnglishSubjectMapping.cs


示例5: Approach_DetailContent

        public Approach_DetailContent()
        {
            InitializeComponent();

            Access = new AccessHelper();
            Query = new QueryHelper();
            dicSurveyFields = new Dictionary<decimal, IEnumerable<string>>();

            this.Group = "畢業學生進路";
            _RunningKey = "";

            this.Load += new EventHandler(Form_Load);
            this.form_loaded = false;
            _Errors = new ErrorProvider();
            _Listener = new ChangeListener();
            _Listener.Add(new DataGridViewSource(this.dgvData));
            _Listener.Add(new TextBoxSource(this.txtMemo));
            _Listener.Add(new NumericUpDownSource(this.txtSurveyYear));
            _Listener.StatusChanged += new EventHandler<ChangeEventArgs>(Listener_StatusChanged);

            this.dgvData.CellEnter += new DataGridViewCellEventHandler(dgvData_CellEnter);
            this.dgvData.CurrentCellDirtyStateChanged += new EventHandler(dgvData_CurrentCellDirtyStateChanged);
            this.dgvData.DataError += new DataGridViewDataErrorEventHandler(dgvData_DataError);
            this.dgvData.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_ColumnHeaderMouseClick);
            this.dgvData.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_RowHeaderMouseClick);
            this.dgvData.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dgvData_MouseClick);

            _BGWLoadData = new BackgroundWorker();
            _BGWLoadData.DoWork += new DoWorkEventHandler(_BGWLoadData_DoWork);
            _BGWLoadData.RunWorkerCompleted += new RunWorkerCompletedEventHandler(_BGWLoadData_RunWorkerCompleted);

            _BGWSaveData = new BackgroundWorker();
            _BGWSaveData.DoWork += new DoWorkEventHandler(_BGWSaveData_DoWork);
            _BGWSaveData.RunWorkerCompleted += new RunWorkerCompletedEventHandler(_BGWSaveData_RunWorkerCompleted);
        }
开发者ID:ischool-desktop,项目名称:KHJH_CentralOffice,代码行数:35,代码来源:Approach.cs


示例6: GetReturnUrl

 private string GetReturnUrl()
 {
     QueryHelper helper = new QueryHelper(this);
     helper.Push("df", this.txtDateFrom.Text);
     helper.Push("dt", this.txtDateTo.Text);
     return helper.OutputReturnUrl();
 }
开发者ID:XtremeKevinChow,项目名称:rdroad,代码行数:7,代码来源:GiftSale.aspx.cs


示例7: btnSave_Click

    private void btnSave_Click(object sender, EventArgs e)
    {
        string classname = txtName.Text.Trim();

            if (classname == String.Empty)
                return;

            QueryHelper queryHelper = new QueryHelper();
            string strQuery = String.Format(@"select class_name from class where class_name='{0}'", classname);

            DataTable dataTable = queryHelper.Select(strQuery);

            if (dataTable == null || dataTable.Rows.Count == 0)
            {
                K12.Data.ClassRecord addRecord = new K12.Data.ClassRecord();

                addRecord.Name = classname;

                string addRecord_ID = K12.Data.Class.Insert(addRecord);
                //Class.Instance.SyncDataBackground(ClassID);   同步處理
                //  log 待處理
                //PermRecLogProcess prlp = new PermRecLogProcess();
                //prlp.SaveLog("學籍.班級", "新增班級", "新增班級,名稱:" + txtName.Text);
                if (chkInputData.Checked)
                    K12.Presentation.NLDPanels.Class.PopupDetailPane(addRecord_ID);
                //Class.Instance.SyncDataBackground(ClassID);   同步處理
            }
            else
            {
                MessageBox.Show("班級名稱重複");
                return;
            }
            this.Close();
    }
开发者ID:jungfengpaulwang,项目名称:EMBACore,代码行数:34,代码来源:Class_Add.cs


示例8: GetReturnUrl

 private string GetReturnUrl()
 {
     QueryHelper helper = new QueryHelper(this);
     helper.Push("pd", this.drpPeriod.SelectedValue);
     helper.Push("df", this.txtDateFrom.Text.Trim());
     helper.Push("dt", this.txtDateTo.Text.Trim());
     return helper.OutputReturnUrl();
 }
开发者ID:XtremeKevinChow,项目名称:rdroad,代码行数:8,代码来源:MbrAccountSum.aspx.cs


示例9: frmCoursePlanUrl

        public frmCoursePlanUrl()
        {
            queryHelper = new QueryHelper();
            Access = new AccessHelper();

            InitializeComponent();
            this.Load += new EventHandler(frmCoursePlanUrl_Load);
        }
开发者ID:jungfengpaulwang,项目名称:EMBACourseSelection,代码行数:8,代码来源:frmCoursePlanUrl.cs


示例10: Course_Student_List

 public Course_Student_List(List<string> CourseIDs)
 {
     this.CourseIDs = CourseIDs;
     this.Query = new QueryHelper();
     this.BGW = new BackgroundWorker();
     this.BGW.DoWork += new DoWorkEventHandler(BGW_DoWork);
     this.BGW.RunWorkerCompleted += new RunWorkerCompletedEventHandler(BGW_RunWorkerCompleted);
 }
开发者ID:jungfengpaulwang,项目名称:EMBACore,代码行数:8,代码来源:Course_Student_List.cs


示例11: Student_UpdateRecord_Export_Excel

 public Student_UpdateRecord_Export_Excel(IEnumerable<string> StudentIDs)
 {
     this.StudentIDs = StudentIDs;
     this.Query = new QueryHelper();
     this.BGW = new BackgroundWorker();
     this.BGW.DoWork += new DoWorkEventHandler(BGW_DoWork);
     this.BGW.RunWorkerCompleted += new RunWorkerCompletedEventHandler(BGW_RunWorkerCompleted);
 }
开发者ID:jungfengpaulwang,项目名称:EMBACore,代码行数:8,代码来源:Student_UpdateRecord_Export_Excel.cs


示例12: Approach_Export

        public Approach_Export()
        {
            InitializeComponent();

            this.Load += new System.EventHandler(this.Form_Load);
            this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
            this.selectedFields = new List<string>();
            this.Query = new QueryHelper();
        }
开发者ID:ischool-desktop,项目名称:KHJH_CentralOffice,代码行数:9,代码来源:Approach_Export.cs


示例13: frmCSAttendToSnapshot

        public frmCSAttendToSnapshot()
        {
            InitializeComponent();

            Query = new QueryHelper();
            Access = new AccessHelper();

            this.Load += new EventHandler(frmCSAttendToSnapshot_Load);
        }
开发者ID:jungfengpaulwang,项目名称:EMBACourseSelection,代码行数:9,代码来源:frmCSAttendToSnapshot.cs


示例14: TemplateManagement

        public TemplateManagement()
        {
            InitializeComponent();

            Access = new AccessHelper();
            Query = new QueryHelper();

            this.Load += new EventHandler(TemplateManagement_Load);
        }
开发者ID:jungfengpaulwang,项目名称:EMBATeachingEvaluation,代码行数:9,代码来源:TemplateManagement.cs


示例15: CheckStudentNumberSame1

 /// <summary>
 /// 檢查一般學生學號是否重複
 /// </summary>
 /// <param name="number"></param>
 /// <returns></returns>
 public static bool CheckStudentNumberSame1(string number)
 {
     bool retVal = false;
     QueryHelper qh = new QueryHelper();
     string strSQL = "select id from student where status=1 and student_number='"+number+"'";
     DataTable dt= qh.Select(strSQL);
     if (dt.Rows.Count > 0)
         retVal = true;
     return retVal;
 }
开发者ID:ChunTaiChen,项目名称:UpdateRecordModule_SH_D,代码行数:15,代码来源:utility.cs


示例16: Course_Case_Usage

        public Course_Case_Usage()
        {
            InitializeComponent();
            this.Group = "使用個案";

            this.Load += new System.EventHandler(this.Course_Case_Usage_Load);

            Access = new AccessHelper();
            Query = new QueryHelper();
        }
开发者ID:jungfengpaulwang,项目名称:EMBACaseManagement,代码行数:10,代码来源:Course_Case_Usage.cs


示例17: GetReturnUrl

 string GetReturnUrl()
 {
     QueryHelper helper = new QueryHelper(this);
     helper.GetValue(this.txtLogis); //传参_方法1
     helper.GetValue(this.txtMemberName); //传参_方法2
     helper.GetValue(this.txtMemberNumber);
     helper.Push("ps", this.magicPagerMain.PageSize);
     helper.Push("pi", this.magicPagerMain.CurrentPageIndex);
     return helper.OutputReturnUrl();
 }
开发者ID:XtremeKevinChow,项目名称:rdroad,代码行数:10,代码来源:RestrictLogis2MemberManager.aspx.cs


示例18: Approach_Report

        public Approach_Report()
        {
            InitializeComponent();

            this.Load += new EventHandler(Form_Load);

            Access = new AccessHelper();
            Query = new QueryHelper();

            this.InitSchoolYear();
        }
开发者ID:jungfengpaulwang,项目名称:KHJHGraduateSurvey,代码行数:11,代码来源:Approach_Report.cs


示例19: ImportReportDocumentTemplate

        public ImportReportDocumentTemplate(UDT.ReportTemplate template = null, string templateName = "")
        {
            InitializeComponent();

            Access = new AccessHelper();
            Query = new QueryHelper();
            this.Template = template;
            this.TemplateName = templateName;

            this.Load += new System.EventHandler(this.ImportReceiptDocumentTemplate_Load);
        }
开发者ID:jungfengpaulwang,项目名称:EMBATeachingEvaluation,代码行数:11,代码来源:ImportReportDocumentTemplate.cs


示例20: CSAttend

        public CSAttend()
        {
            InitializeComponent();

            this.Access = new AccessHelper();
            this.Query = new QueryHelper();

            InitializeData();

            this.Load += new EventHandler(CSAttendResult_Load);
        }
开发者ID:jungfengpaulwang,项目名称:EMBACaseManagement,代码行数:11,代码来源:CaseExport.cs



注:本文中的QueryHelper类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# QueryInfo类代码示例发布时间:2022-05-24
下一篇:
C# QueryFromClause类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap