Is it possible to persistently add the manually added stored procedures in the edmx file? The database is generated from model. Everytime I change something within the editor in the edmx file, the stored procedures are lost. Only the FunctionImport entry is still available afterwards.

A sample Function looks like this:

    <Function Name="SP_I_InsertGroup" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
      <Parameter Name="name" Type="nvarchar" Mode="In" />
      <Parameter Name="chiefId" Type="int" Mode="In" />
      <Parameter Name="description" Type="nvarchar" Mode="In" />
      <Parameter Name="parentId" Type="int" Mode="In" />
      <Parameter Name="mode" Type="char" Mode="In" />
    </Function>

The corresponding FunctionImportMapping:

    <FunctionImportMapping FunctionImportName="InsertGroup" FunctionName="DAL.Store.SP_I_InsertGroup" />

FunctionImport:

      <FunctionImport Name="InsertGroup" ReturnType="Collection(Int32)">
        <Parameter Name="name" Mode="In" Type="String" />
        <Parameter Name="chiefId" Mode="In" Type="Int32" />
        <Parameter Name="description" Mode="In" Type="String" />
        <Parameter Name="parentId" Mode="In" Type="Int32" />
        <Parameter Name="mode" Mode="In" Type="String" />
      </FunctionImport>
link|improve this question
feedback

1 Answer

Moo, you should not modify the edmx file by hand.

"Changes to this file may cause incorrect behavior and will be lost if the code is regenerated."

That´s why you´re losing your work. You should map the already created stored procedure from the designer, the same way you made with your tables.

I´m assuming you´re playing with EF4.

link|improve this answer
What you proposed is more or less the question. I mean I have followed the steps described by Microsoft on msdn.microsoft.com/en-us/library/dd296754.aspx. This leads to the described problem. – Moo Dec 25 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.