Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 916359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T18:02:21+00:00 2026-05-15T18:02:21+00:00

How can i insert data programmatically? but i can not do that. No error

  • 0

How can i insert data programmatically? but i can not do that. No error return also no adding data in my database.How can i do that? i created a Extention method to use in my project look please below.i want to add extentionmethod but i can not. How can i add data with below extention method?

namespace TestEng
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

            IEngManager engManager = new EngManagerTables();
            MyTable mytable = new MyTable();
            engManager.Load(mytable);

            engManager.Save(mytable);
        }
    }

    partial interface IEngManager
    {
        bool Load(ILoad engLoader);
        bool Save(ISave engSaver);
    }

    public class EngManagerTables : IEngManager
    {

        #region IEngManager Members

        public bool Load(ILoad engLoader)
        {
            return engLoader.Load();
        }

        public bool Save(ISave engSaver)
        {
            return engSaver.Save();
        }

        #endregion
    }
    public interface ILoad
    {
        bool Load();
    }

    public interface ISave
    {
        bool Save();
    }



    public class MyTable : ILoad, ISave
    {
        public List<MyTable2> myTable2 { get; set; }
        public EngDataContext engCtx;
        private ArrayList columnNames;
        private ArrayList columnValues;
        private string[] _columnNames;
        private object[] _columnValues;
        public MyTable()
        {
            myTable2 = new List<MyTable2>();
            columnNames = new ArrayList();
            columnValues = new ArrayList();
            engCtx = new EngDataContext();
        }
        public bool Save()
        {
            try
            {
                foreach (var myObject in myTable2)
                {
                    foreach (PropertyInfo info in myObject.GetType().GetProperties())
                    {
                        if (info.CanRead)
                        {
                            object o = info.GetValue(myObject, null);
                            columnValues.Add(o);
                            string Name = info.Name.ToString();
                            columnNames.Add(Name);
                        }
                    }
                    _columnNames = columnNames.ToArray(typeof(string)) as string[];
                    _columnValues = columnValues.ToArray(typeof(object)) as object[];

                    engCtx.DynamicInsertCustomerExtension(_columnNames, _columnValues);
                    break;
                }

                #region old

                #endregion

            }
            catch (Exception ex)
            {

                MessageBox.Show("hata:" + ex.Message);
            }
            return true;
        }

        public bool Load()
        {
            myTable2 = engCtx.MyTable2s.Where(id => id.ID != null).Select(id => id).ToList();
            return myTable2.Count > 0;
        }
 }



    public static class MyTechnicEngineeringExtensionMethod
    {

        public static bool DynamicInsertCustomerExtension(this EngDataContext db, string[] columnNames, object[] columnValues)
        {

            try
            {
                if (columnNames.Length == 0 || columnValues.Length == 0)
                {
                    throw new Exception("Kolon ismi veya degeri yanlış!");
                }
                if (columnNames.Length != columnValues.Length)
                {
                    throw new Exception("Kolon ismi ve degeri eşit uzunlukta degil!");
                }
                MyTable2 entity = new MyTable2();
                for (int i = 1; i < columnNames.Length; i++)
                {
                    entity.GetType().GetProperty(columnNames[i]).SetValue(entity, columnValues[i], null);
                }
                db.MyTable2s.InsertOnSubmit(entity);
                return true;
            }

            catch (Exception ex)
            {

                MessageBox.Show(ex.Message);

                return false;

            }

        }

    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T18:02:21+00:00Added an answer on May 15, 2026 at 6:02 pm

    I don’t see where you call engCtx.SubmitChanges() to actually push the changes to the database…

    HTH.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can not insert data to database because it is different data type between
How can I configure membership provider to insert data on my own database
I am trying to insert data from a database into a textarea. I can't
how can insert data array <input name='hello[]'> with function serialize in database? please give
How i can insert data into more than one table of an Access database
I am developing a website and got a database where people can insert data
I need to know how I can insert data inside objects inside an array
DetailsView1.DefaultMode = DetailsViewMode.Insert; After inserting how can i Preview Data before Submitting/Inserting data in
I can insert annotations on specific datasets on the graph but I wish to
Is there a way that I can insert values into a VB.NET Dictionary when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.