После установки точек останова и попытки пошагового просмотра кода веб-сайта отладчик, по-видимому, «останавливается» в течение нескольких секунд и останавливает отладку.Я понятия не имею, что является причиной этого, и это сводит меня с ума.
Вот код, который я пытаюсь пройти:
using (System.Transactions.TransactionScope transaction = new System.Transactions.TransactionScope())
{
// Create new customer.
CustomersBLL customerOperations = new CustomersBLL();
customerOperations.InsertCustomer(quote.CurrentDate, null, null, null, null, null, null, null, null, null);
// Prepare to insert Quote.
// Retrieve CustomerID.
Table = customerOperations.GetNewestCustomerID();
quote.CustomerID = (int)Table.Rows[0][0];
// Get word count and quote amount.
quote.GetWordCount();
quote.GetQuoteAmount();
// Insert Quote
// Insert DocumentFile - must retrieve QuoteNumber.
transaction.Complete();
}