Click here to Skip to main content
15,886,095 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to delete from database using Repeater that has checkboxes when checkbox is selected and button is fired, then i want to delete from the database

I have tryed like this , but dont get it to work

C#
protected void ButtonDeleteAttachments_Click(object sender, EventArgs e)
        {
            var db = new knowitCVdbEntities();
            SPWeb theSite = SPControl.GetContextWeb(Context);
            SPUser theUser = theSite.CurrentUser;
            string strUserName = theUser.LoginName;

            var theEmpDocumentRem = (
                                        from p
                                            in db.EMPLOYEES
                                        where p.username == strUserName
                                        select p).FirstOrDefault();

            _emp = theEmpDocumentRem;

            if (_emp != null)
            {

                int docId = Convert.ToInt32(LabelDocumentID.Text);

                var documentList = (from p in db.EMPLOYEE_DOCUMENT
                                    where p.employee_id == _emp.employee_id && p.document_id== docId
                                    select p).ToList();

                foreach (var doclist in documentList)
                {

                    db.DeleteObject(doclist);
                    db.SaveChanges();


                }

                foreach (var docItems in RepeaterDocument.Items)
                {
                    if(_chk.Checked)
                    {
                        db.DeleteObject(docItems);
                    }
                    
                }

            }
Posted
Comments
Mike Meinz 9-Apr-13 13:43pm    
What doesn't work? Have you stepped through the code using the Visual Studio interactive debugger? Where in the code is it failing and how is it failing? What is the error message and which line in your code threw the error?
Kurac1 9-Apr-13 14:23pm    
Because i need to loop true the database first in the foreach like u se, but i dont select what i want to delete i want to delete from checkbox.Checked. That i am trying to do in the other foreach but i dont now to connect two loops.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900