posts - 0,  comments - 20,  trackbacks - 0
private void ViewBinding()
        {    
            Expression<Func<TestTable, bool>> expr = n => GetCondition(n);
            var xQuery = DCDataContext.TestTables.Where<TestTable>(expr.Compile());
            this.dataGridView1.DataSource = xQuery.ToList<TestTable>();
        }
        private bool GetCondition(TestTable tb)
        {
            bool boolResult = true;
            if (txtUserNumber.Text.Trim() != string.Empty)
            {
                boolResult &= tb.UserNumber == int.Parse(txtUserNumber.Text.Trim());
            }
            if (txtName.Text.Trim() != string.Empty)
            {
                boolResult &= tb.Name == txtName.Text.Trim();
            }
            if (txtClassName.Text.Trim() != string.Empty)
            {
                boolResult &= tb.ClassName == txtClassName.Text.Trim();
            }
            return boolResult;
        }
        private void button1_Click(object sender, EventArgs e)
        {
            ViewBinding();
        }
posted on 2008-12-17 17:48 Documents 阅读(1900) 评论(0)  编辑  收藏 所属分类: LinqASP.NET
<2025年6月>
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

留言簿

文章分类

文章档案

J2EE

搜索

  •  

最新评论