I have created a Devart linqconnect model called as shopping context and using mysql as the database.I am using trial version of Linqconnect.
I have created a stored procedure clothingItems in the database , when i try to add the stored procedure to the diagram it gives me warning that:
In order to obtain metadata of procedure result set it is necessary to execute the procedure, which may cause database damage. Procedure name: shopping.clothing_items Do you wish to obtain metadata of procedure result set?
but after in the code behind file, I see that it is appearing in the intellisense menu clothingItemResults and ClothingItem method as ShoppingDatcontext.ClothingItem and and duplicate methods (I think !) like :
void ClothingItem1(),
void ClothingItem2();
void ClothingItem3();
and also it is not getting added in the diagram.
How can i add stored procedure without damaging the database and how to insert it in the diagram that it would display it. please Help.