Stored procedure which returns results of multiple entities
Hi I have a stored procedure which returns result of some fields of multiple tables . can i map the result 开发者_如何转开发to associated tables (without using complex types)? thanks.
Out of the box implementation allows you mapping only to flat structures. So either your stored procedures returns single mapped entity type or you need a complex / custom type. It doesn't allow mapping to relations.
精彩评论