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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 516k
  • Answers 516k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Oh I got it, thanks a lot for your(Petr Kozelek)… May 16, 2026 at 6:45 pm
  • Editorial Team
    Editorial Team added an answer The Microsoft CLR has a 2GB maximum object size limit,… May 16, 2026 at 6:45 pm
  • Editorial Team
    Editorial Team added an answer The .NET Framework is an environment (runtime) on top of… May 16, 2026 at 6:45 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I need a data structure that can insert elements and sort itself as quickly
I've a requirement that I need to read an excel sheet programmatically using asp.net/C#
I am inserting a column in a DataGridView programmatically (i.e., not bound to any
This is probably a noob question that I will get slated for but here
I need to import the data form .csv file into the database table (MS
I'm currently writing a process that generates Powerpoint reports programmatically from a given template
I have an iPhone app which submits user entered data to a SQL database.
I'm using HSQLDB for data layer integration testing, which is great. However, I'm finding
I want to insert a bezier spline into my Canvas by this code <mx:Canvas
I'm looking for a library that will allow me to programatically modify Excel files

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.