views:

86

answers:

1

Are entities required to be mapped to a table or can they map to a stored procedure?

I have an entity that does not map to any specific table, instead it maps to a stored procedure.

I am getting the following error:

Schema specified is not valid. Errors: Model.msl(6,6) : error 2062: No mapping specified for instances of the EntitySet and AssociationSet in the EntityContainer HNFS_ProviderEntities.

A: 

It appears to be yes: http://msdn.microsoft.com/en-us/library/bb896279.aspx

It turns on that instead of an entity I needed to use a complex type.

Chuck Conway