本文整理汇总了C#中MonoTests.System.Web.UI.WebControls.ObjectDataSourcePoker.Update方法的典型用法代码示例。如果您正苦于以下问题:C# ObjectDataSourcePoker.Update方法的具体用法?C# ObjectDataSourcePoker.Update怎么用?C# ObjectDataSourcePoker.Update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MonoTests.System.Web.UI.WebControls.ObjectDataSourcePoker
的用法示例。
在下文中一共展示了ObjectDataSourcePoker.Update方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: UpdateMethod
public static void UpdateMethod (Page p)
{
MyTableObject.ds = MyTableObject.CreateDataTable ();
ObjectDataSourcePoker ods = new ObjectDataSourcePoker ();
InitObjectDataSource (ods, "update");
ods.Updated += new ObjectDataSourceStatusEventHandler (odc_Updated);
ods.Updating += new ObjectDataSourceMethodEventHandler (odc_Updating);
p.Controls.Add (ods);
Assert.AreEqual (3, ((DataView) ods.Select ()).Count, "BeforeUpdate1");
Assert.AreEqual (1001, ((DataView) ods.Select ())[0].Row.ItemArray[0], "BeforeUpdate2");
Assert.AreEqual ("Mahesh", ((DataView) ods.Select ())[0].Row.ItemArray[1], "BeforeUpdate3");
Assert.AreEqual ("Chand", ((DataView) ods.Select ())[0].Row.ItemArray[2], "BeforeUpdate4");
Assert.AreEqual (false, updated, "BeforeUpdateEvent");
Assert.AreEqual (false, updating, "BeforeUpdatingEvent");
ods.Update ();
Assert.AreEqual (3, ((DataView) ods.Select ()).Count, "AfterUpdate1");
Assert.AreEqual (1001, ((DataView) ods.Select ())[0].Row.ItemArray[0], "AfterUpdate2");
Assert.AreEqual ("David", ((DataView) ods.Select ())[0].Row.ItemArray[1], "AfterUpdate3");
Assert.AreEqual ("Eli", ((DataView) ods.Select ())[0].Row.ItemArray[2], "AfterUpdate4");
Assert.AreEqual (true, updated, "AfterUpdateEvent");
Assert.AreEqual (true, updating, "AfterUpdatingEvent");
}