Hi
I'm fairly new to LLBLGen and am having trouble mapping the results of a stored procedure call to one of my Entity classes
I have a table called Member and a stored procedure called prcMember_GetActive which simply returns the results of the following query:
select * from Member where IsActive = 1
This is a very straight forward mapping between the Member table and the generated MemberEntity class. The generated RetrievalProcedures.prcMember_GetActive function only returns a DataTable but i'd like to retrieve a MemberCollection instance.
I've looked at projections but this seems a hell of a lot of work, especially if we're dealing with a large table.
Am I missing something obvious. I'd have thought it would be relatively easy for the code-generator to see the output of the stored procedure and map it to the approriate Entity class
Many thanks
Ben