Try using this :-
db.Configuration.ProxyCreationEnable = false;
not able to retrieve only entites from (IDbSet<TEntity> _entities) without converting into list throwing error "the function requires all threads to run"
Prakash M
1
Reputation point
not able to retrieve only entites from (IDbSet<TEntity> _entities) without converting into list throwing error "the function requires all threads to run".
2 answers
Sort by: Most helpful
-
AddWebSolution 171 Reputation points
2021-05-26T05:38:30.18+00:00 -
Prakash M 1 Reputation point
2021-05-28T10:58:40.137+00:00 Thank you so much for all your valuable inputs. @Duane Arnold @AddWebSolution
The root cause of the issue was due to this below-mentioned line was missing from the windows service startup file,
Environment.SetEnvironmentVariable("AppendManifestToken_SQLiteProviderManifest", ";BinaryGUID=True;");
Mistakenly it got removed and created big chaos in the application.