ObjectDataSource.OldValuesParameterFormatString 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定格式字串,套用至傳遞給 Delete
或 Update
方法之原始值的參數名稱。
public:
property System::String ^ OldValuesParameterFormatString { System::String ^ get(); void set(System::String ^ value); };
public string OldValuesParameterFormatString { get; set; }
member this.OldValuesParameterFormatString : string with get, set
Public Property OldValuesParameterFormatString As String
屬性值
字串,表示套用至傳遞給 Delete() 或 Update() 方法之任何 oldValues
或索引鍵參數名稱的格式字串。 默認值為 "{0}"
,這表示參數名稱是功能變數名稱。
備註
屬性的值OldValuesParameterFormatString只會套用至主鍵,例如使用數據系結控件的 屬性所識別,或在屬性設定為CompareAllValues值的刪除和更新案例ConflictDetection中,DataKeyNames
以及將原始值集合傳遞至對應的數據方法。
以下是您可能會變更 OldValuesParameterFormatString 屬性的兩個常見案例:
您可能想要變更 屬性,以區分更新中的舊值和新值。 當 屬性 ConflictDetection 設定為 CompareAllValues 值時,原始值和新值的參數都會新增至 UpdateParameters 集合。 如果沒有格式化字串,系統會為每個數據欄位建立兩個具有相同名稱的參數。 藉由變更原始值參數的名稱,您可以將數據與原始數據源進行比較,以偵測衝突並比較索引鍵值。
某些可視化設計工具會實作原始值和索引鍵的特定命名配置。
屬性OldValuesParameterFormatString會委派給OldValuesParameterFormatString與 ObjectDataSource 控件相關聯之 對象的屬性ObjectDataSourceView。