-- Add the code as below.
There is a betterway to update the Table View? Not the Table.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.view_TestTableAdapter.Fill(this._TestDataSet.View_Test);
}
private void button1_Click(object sender, EventArgs e)
{
try
{
this.Validate();
this.viewTestBindingSource.EndEdit();
this.view_TestTableAdapter.UPDATE(this.TestDataSet.View_Test);
MessageBox.Show("Update Ok)");
}
catch (System.Exception ex)
{
MessageBox.Show("Update failed");
}
}
}
}