ObjectSchema 屬性
取得或設定 Sync Framework 在其中建立物件的資料庫結構描述。
命名空間: Microsoft.Synchronization.Data.SqlServer
組件: Microsoft.Synchronization.Data.SqlServer (在 Microsoft.Synchronization.Data.SqlServer.dll 中)
語法
'宣告
Public Property ObjectSchema As String
Get
Set
'用途
Dim instance As SqlSyncScopeProvisioning
Dim value As String
value = instance.ObjectSchema
instance.ObjectSchema = value
public string ObjectSchema { get; set; }
public:
property String^ ObjectSchema {
String^ get ();
void set (String^ value);
}
member ObjectSchema : string with get, set
function get ObjectSchema () : String
function set ObjectSchema (value : String)
屬性值
型別:System. . :: . .String
Sync Framework 在其中建立物件的資料庫結構描述。
範例
下列程式碼範例會佈建 SQL Server 資料庫。佈建是依據從 SQL Server Compact 資料庫擷取的範圍資訊,擷取的方法是呼叫 GetDescriptionForScope 並且指定範圍名稱 ("filtered_customer")、在 SQL Server Compact 資料庫中使用的選擇性物件前置詞名稱 (在這裡是 "Sync"),以及此連接。SQL Server Compact 資料庫不支援單獨的結構描述,所以我們必須為所有同步處理相關物件加上名稱前置詞 "Sync" 以便於識別。對於 SQL Server 資料庫,我們必須指定 Sync Framework 在其中儲存同步處理物件的選擇性資料庫結構描述 (在這裡是 "Sync",但是值不一定要與物件前置詞相符)。若要在完整範例的內容中檢視這段程式碼,請參閱 HOW TO:設定及執行資料庫同步處理 (SQL Server)。
DbSyncScopeDescription clientSqlDesc = SqlCeSyncDescriptionBuilder.GetDescriptionForScope("filtered_customer", "Sync", clientSqlCe1Conn);
SqlSyncScopeProvisioning clientSqlConfig = new SqlSyncScopeProvisioning(clientSqlConn, clientSqlDesc);
clientSqlConfig.ObjectSchema = "Sync";
clientSqlConfig.Apply();
Dim clientSqlDesc As DbSyncScopeDescription = _
SqlCeSyncDescriptionBuilder.GetDescriptionForScope("filtered_customer", "Sync", clientSqlCe1Conn)
Dim clientSqlConfig As New SqlSyncScopeProvisioning(clientSqlConn, clientSqlDesc)
clientSqlConfig.ObjectSchema = "Sync"
clientSqlConfig.Apply()