In Entity Framework, what approach is used to update properties of a complex type that is part of a tracked entity?

  • Auto-tracking
  • Eager-loading
  • Lazy-loading
  • Proxy-tracking
Entity Framework utilizes auto-tracking approach to update properties of a complex type that is part of a tracked entity. With auto-tracking, changes made to the properties of complex types are automatically detected and reflected in the context, facilitating updates.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *