ASPxGridView和LinqServerModeDataSource:插入和更新行而不显示网格中的所有列

时间:2015-07-16 07:33:54

标签: c# devexpress aspxgridview

当我在LinqServerModeDataSource中没有显示该表的所有字段时,如何使用ASPxGridView插入或编辑基础数据表的行?

已经提出了类似的问题,但这不是重复的。例如,this one会询问LinqServerModeDataSource,并且接受的答案会说明如何使用普通SqlDataSource

我通过ASPxGridViewLinqServerModeDataSource连接到表格。但是我没有在网格中显示所有列。例如,创建日期的列和用户不需要知道的其他列。我允许在网格中进行内联编辑,但在InsertingUpdating事件中,传递的新值只是网格中显示值的字典。

其他价值怎么样?我希望能够在事件处理程序中以编程方式设置基础数据行的任何值,无论它们是否显示并由用户编辑。如何访问它们并在LinqServerModeDataSource的事件中设置其他值?我没有运气阅读devexpress文档。

我猜测必须有一个Linq类挂钩到我可以在这些事件中使用的表,类似于Selecting事件。但是如何?

这里是Selecting事件处理程序的样子......我是否可以使用一些类似的接口来访问其他事件中的基础数据?

protected void dsRecipients_Selecting(object sender, DevExpress.Data.Linq.LinqServerModeDataSourceSelectEventArgs e)
{
    SmsRecipientsDataContext context = new SmsRecipientsDataContext();
    IQueryable<NotificationParty> val = context.NotificationParties;

    int notificationGroupID = Convert.ToInt32(Context.Session["NotificationGroupID"]);
    val = val.Where(n => n.NotificationGroupID == notificationGroupID && n.Active);

    e.KeyExpression = "ID";
    e.QueryableSource = val;
}

1 个答案:

答案 0 :(得分:0)

尽管我讨厌回答我自己的问题......

我无法弄清楚如何让这个控件做我想做的事。但是,一个简单的解决方法是在网格本身处理插入和更新。

所以,它现在正在运作。我将EnableUpdate上的EnableInsertLinqServerModeDataSource属性设置为false,然后只需处理网格的RowInsertingRowUpdating事件。直接到数据库。

例如,我的插入事件处理程序是:

protected void recipientsGrid_RowInserting(object sender, DevExpress.Web.Data.ASPxDataInsertingEventArgs e)
{
    using (SqlConnection connection = new SqlConnection(App_Logic.Wrappers.DatabaseConnectionString()))
    {
        connection.Open();
        using (SqlCommand command = new SqlCommand())
        {
            command.Connection = connection;
            command.Transaction = connection.BeginTransaction();
            try
            {
                command.CommandText = " INSERT INTO NotificationParty(NotificationGroupID, FirstName, LastName, CellNumber, Active, UserCreated, DateCreated) VALUES " +
                    "(@NotificationGroupID, @FirstName, @LastName, @CellNumber, @Active, @UserCreated, GETDATE())";

                command.Parameters.AddWithValue("@NotificationGroupID", Convert.ToInt32(Context.Session["NotificationGroupID"]));
                command.Parameters.AddWithValue("@FirstName", e.NewValues["FirstName"]);
                command.Parameters.AddWithValue("@LastName", e.NewValues["LastName"]);
                command.Parameters.AddWithValue("@CellNumber", e.NewValues["CellNumber"]);
                command.Parameters.AddWithValue("@Active", 1);
                command.Parameters.AddWithValue("@UserCreated", Session["UID"]);

                command.ExecuteNonQuery();
                command.Transaction.Commit();
            }
            catch
            {
                command.Transaction.Rollback();
            }
        }
    }

    recipientsGrid.CancelEdit();
    e.Cancel = true;
}

我的更新事件处理程序是这样的:

protected void recipientsGrid_RowUpdating(object sender, DevExpress.Web.Data.ASPxDataUpdatingEventArgs e)
{
    using (SqlConnection connection = new SqlConnection(App_Logic.Wrappers.DatabaseConnectionString()))
    {
        connection.Open();
        using (SqlCommand command = new SqlCommand())
        {
            command.Connection = connection;
            command.Transaction = connection.BeginTransaction();
            try
            {
                command.CommandText = " UPDATE NotificationParty SET FirstName = @FirstName, LastName = @LastName, CellNumber = @CellNumber, UserModified = @UserModified, DateModified = GETDATE() WHERE ID = @ID";

                command.Parameters.AddWithValue("@ID", e.Keys[0]);
                command.Parameters.AddWithValue("@FirstName", e.NewValues["FirstName"]);
                command.Parameters.AddWithValue("@LastName", e.NewValues["LastName"]);
                command.Parameters.AddWithValue("@CellNumber", e.NewValues["CellNumber"]);
                command.Parameters.AddWithValue("@UserModified", Session["UID"]);

                command.ExecuteNonQuery();
                command.Transaction.Commit();
            }
            catch
            {
                command.Transaction.Rollback();
            }
        }
    }

    recipientsGrid.CancelEdit();
    e.Cancel = true;
}