0

Linq データ ソースから SQLExecption をキャッチする方法:

<asp:LinqDataSource ID="linq_tipo" runat="server" 
ContextTypeName="Linq_Clinica_Veterinaria" EntityTypeName="" 
TableName="tb_tipo_animals">
</asp:LinqDataSource>

Application_Error() が発生する前に、どのようなイベントを実行できますか?

4

1 に答える 1

1

次のような例外をキャッチします。

protected void linq_tipo_Updating(object sender,
        LinqDataSourceUpdateEventArgs e) {
    if (e.SQLException != null)
    {
    //Handle the exception
        e.ExceptionHandled = true;//Set to true as you have handled the exception
    } }

同様に、Inserted、Deleted、Selecting などのイベントを処理できます。

于 2012-07-07T12:42:58.183 に答える