Readdy Write  
0,00 €
Your View Money
Views: Count
Self 20% 0
Your Content 60% 0

Users by Links 0
u1*(Content+Views) 10% 0
Follow-Follower 0
s2*(Income) 5% 0

Count
Followers 0
Login Register as User

Error: A second operation started in this context before a previous asynchronous operation completed.

20.08.2018 (👁5801)


 

 

Error:

A second operation started on this context before a previous asynchronous operation completed.

Use 'await' to ensure that any asynchronous operations have completed before calling another method on this context.

Any instance members are not guaranteed to be thread safe."

 

 

Reason:

You also have to use the method on await with the Linq EF Entity Framework

 

Wrong code:

clsDB.Add_or_Update_Record_from_List(sURL_Detail, sTitle);

 

 

Solution:

Right call with await

await clsDB.Add_or_Update_Record_from_List(sURL_Detail, sTitle);