I\'d like my Entity Framework model to generate entities with internal
access modifier, instead of public
. I use
Sure, in Model Browser window select > EntityTypes
and on your type set in Properties window access modifier. You should also modify in EntityContainer > EntitySets the modifier for set, as if the type is internal, the set should be at least internal too (default public).
Optinally you can use T4 template, where you can directly modify the access modified being generated.