To map a function to a complex type, define a ________ in the Entity Framework model.

  • ComplexType
  • DbSet
  • EntityType
  • FunctionImport
In Entity Framework, to map a function to a complex type, you need to define a ComplexType in the model. Complex types represent types in the conceptual model that do not have keys and are not mapped to tables in the database. FunctionImport is used to import stored procedures and user-defined functions into the conceptual model, DbSet is a property that represents a table in the database, and EntityType represents an entity type in the conceptual model.
Add your answer
Loading...

Leave a comment

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