The only way to disable this feature is to not use a database initializer. When you use the database initializer (you expect EF to create or modify the database), you will always have queries on this table.
To disable the database initializer, use this when loading your application:
Database.SetInitializer<YourContext>(null);
source share