示例#1
0
        //sirkət adina və userin ad ve soyadina gore axtariş
        private void btnReyAxtar_Click(object sender, RoutedEventArgs e)
        {
            dgRey.Items.Clear();
            if (string.IsNullOrEmpty(txtReyAxtar.Text))
            {
                MessageBox.Show("Nə axtarmaq istədiyinizi yaxın", "Bildiriş", MessageBoxButton.OK, MessageBoxImage.Stop);
                return;
            }

            List <Comment> com = db.Comments.Where(x =>
                                                   (x.Customer.CustomerName.Contains(txtReyAxtar.Text)) ||
                                                   ((x.User.Name + " " + x.User.Surname).Contains(txtReyAxtar.Text))).ToList();

            foreach (Comment comment in com)
            {
                vwComment vw = new vwComment()
                {
                    Id       = comment.CommentId,
                    FullName = comment.User.Name + " " + comment.User.Surname,
                    Company  = comment.Customer.CustomerName,
                    Comment  = comment.CommentText
                };
                dgRey.Items.Add(vw);
            }
        }
示例#2
0
        //datagrid doldurulması
        private void FillReyDataGrid()
        {
            dgRey.Items.Clear();

            foreach (Comment comment in db.Comments.ToList())
            {
                vwComment vw = new vwComment()
                {
                    Id       = comment.CommentId,
                    FullName = comment.User.Name + " " + comment.User.Surname,
                    Company  = comment.Customer.CustomerName,
                    Comment  = comment.CommentText
                };
                dgRey.Items.Add(vw);
            }
        }