using (var ts = new TransactionScope())
using (var adapter = Data.Rad.DatabaseSpecific.DataAccessAdapter.GetAdapter())
{
Parallel.ForEach(
invoiceCol
, invoice =>
{
Within this foreach i add a entity to the database.
When i run this i get the error
An exception was caught during the execution of an action query: The ConnectionString property has not been initialized.. Check InnerException, QueryExecuted and Parameters of this exception to examine the cause of this exception.
Any suggestions