エンジンにアクセスできない場合、WP7のデータベースの状態をどのように確認しますか?
基本的に、このコードに相当する電話は何ですか?
public void VerificarFileBD()
{
try
{
var engine = new SqlCeEngine("Data Source = AdventureWorks.sdf");
if (false == engine.Verify())
{
MessageBox.Show("Database is corrupted.");
engine.Repair(null, RepairOption.RecoverCorruptedRows);
}
}
catch (Exception)
{
throw;
}
}