问题
My program (C#
, WinForms
, Visual Studio
) uses Entity Framework Core
to work with Office Access
. The database provider is Jet. The context generated by the command Scaffold DbContext
.
When, during the operation of the program call the command context Add()
, Update()
, Remove()
, SaveChanges()
- program is the outgoing request (catches firewall antivirus). Request to the address 52.109.*.*
. For example, 52.109.124.23
. According to Whois, the address belongs to Microsoft
.
Such activity attracts antivirus and affects the operation of the program.
I would like to know the purpose of this request and how to disable it. I know that you can make firewall exceptions. But it is unclear requests will not be lost.
来源:https://stackoverflow.com/questions/57002509/entity-framework-core-sends-a-request-to-microsoft-addresses-when-accessing-the