0

RowEditEnding イベントで XAML DataGrid からデータベース レコードを更新しようとしています DB 名: ManageOrders テーブル: 顧客: ID (Guid)、名前 (varchar)、住所 (varchar) データベース セット: コピー 新しいデータセット セット: コピーしない

UPDATE と ExecuteNonQuery を使用してクエリをハードコーディングすると結果が得られますが、datasets / dataTableAdapter.Update を使用しようとすると更新されません。助けてください。私はWPFとC#プログラミングに非常に慣れていないことに注意してください。私はこれを調査するのに1週間を費やしましたが、答えを見つけたり、自分で解決したりできません。

ここに私のコードがあります

    public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }


    private SimpleData.ManageOrdersDataSet manageOrdersDataSet;
    private SimpleData.ManageOrdersDataSetTableAdapters.CustomerTableAdapter manageOrdersDataSetCustomerTableAdapter;
    System.Windows.Data.CollectionViewSource customerViewSource; 

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {

        manageOrdersDataSet = ((SimpleData.ManageOrdersDataSet)(this.FindResource("manageOrdersDataSet")));
        // Load data into the table Customer. You can modify this code as needed.
        manageOrdersDataSetCustomerTableAdapter = new SimpleData.ManageOrdersDataSetTableAdapters.CustomerTableAdapter();
        manageOrdersDataSetCustomerTableAdapter.Fill(manageOrdersDataSet.Customer);
        customerViewSource = ((System.Windows.Data.CollectionViewSource)(this.FindResource("customerViewSource")));
        customerViewSource.View.MoveCurrentToFirst();
    }

    private void customerDataGrid_RowEditEnding(object sender, DataGridRowEditEndingEventArgs e)        
{
   this.manageOrdersDataSetCustomerTableAdapter.Update(this.manageOrdersDataSet.Customer);
        manageOrdersDataSet.AcceptChanges();   

 }
}

ここに私のXAMLがあります

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:SimpleData" x:Class="SimpleData.MainWindow"
    Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">

<Window.Resources>
    <local:ManageOrdersDataSet x:Key="manageOrdersDataSet"/>
    <CollectionViewSource x:Key="customerViewSource" Source="{Binding Customer, Source={StaticResource manageOrdersDataSet}}"/>
</Window.Resources>

<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="533*"/>
        <ColumnDefinition Width="186*"/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition Height="43*"/>
        <RowDefinition Height="377*"/>
    </Grid.RowDefinitions>
    <TabControl  Grid.Column="0" HorizontalAlignment="Left" Height="357" Margin="10,9.8,0,0" Grid.Row="1" VerticalAlignment="Top" Width="513">
        <TabItem x:Name="tabView" Header="Customer">
            <Grid DataContext="{StaticResource customerViewSource}">

                <DataGrid x:Name="customerDataGrid" RowDetailsVisibilityMode="VisibleWhenSelected" Margin="0,0,137,75" ItemsSource="{Binding}" EnableRowVirtualization="True" AutoGenerateColumns="False" RowEditEnding="customerDataGrid_RowEditEnding" >
                    <DataGrid.Columns>
                        <DataGridTextColumn x:Name="iDColumn" Width="10" Header="ID" Binding="{Binding ID, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True, Mode=TwoWay }"/>
                        <DataGridTextColumn x:Name="nameColumn" Width="*" Header="Name" Binding="{Binding Name, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True, Mode=TwoWay }"/>
                        <DataGridTextColumn x:Name="addressColumn" Width="*" Header="Address" Binding="{Binding Address, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True, Mode=TwoWay}"/>
                    </DataGrid.Columns>
                </DataGrid>

            </Grid>
        </TabItem>

        <TabItem Header="Order">
            <Grid Background="#FFE5E5E5" Width="auto"/>
        </TabItem>
    </TabControl>


</Grid>

4

1 に答える 1

0

私は自分の問題に対する答えを見つけました。DB を作成したときに、PRIMARY KEY を設定するのを忘れていました。つまり、プロパティと選択したフィールドに移動しなかったことを意味します-Visual StudioがUPDATEコマンドを適切に構築できなかったことを設定せずに、プライマリキー(MSSQLマネージャ、テーブルのデザイン)

(右クリックで)TABLE ADAPTER -> CONFIGURE -> ADVANCE OPTIONS に行ったことを確認し、REFRESH THE DATA TABLE がオンになっていることを確認します。

これがいつか誰かに役立つことを願っています。

于 2015-03-03T15:29:11.110 に答える