Advertisement
Guest User

SO Question ModelDiagram.edmx

a guest
Sep 24th, 2014
452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 21.66 KB | None | 0 0
  1.     <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
  3.   <!-- EF Runtime content -->
  4.   <edmx:Runtime>
  5.     <!-- SSDL content -->
  6.     <edmx:StorageModels>
  7.       <Schema Namespace="ArmoireOutils.Model.Store" Provider="MySql.Data.MySqlClient" ProviderManifestToken="5.6" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
  8.         <EntityType Name="cupboards">
  9.           <Key>
  10.             <PropertyRef Name="Id" />
  11.           </Key>
  12.           <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  13.           <Property Name="GUID" Type="longtext" Nullable="false" />
  14.         </EntityType>
  15.         <EntityType Name="cupboarduser">
  16.           <Key>
  17.             <PropertyRef Name="Cupboards_Id" />
  18.             <PropertyRef Name="Users_Id" />
  19.           </Key>
  20.           <Property Name="Cupboards_Id" Type="int" Nullable="false" />
  21.           <Property Name="Users_Id" Type="int" Nullable="false" />
  22.         </EntityType>
  23.         <EntityType Name="langs">
  24.           <Key>
  25.             <PropertyRef Name="Id" />
  26.           </Key>
  27.           <Property Name="Id" Type="smallint" StoreGeneratedPattern="Identity" Nullable="false" />
  28.           <Property Name="CountryCode" Type="longtext" Nullable="false" />
  29.           <Property Name="DisplayName" Type="longtext" Nullable="false" />
  30.         </EntityType>
  31.         <EntityType Name="tools">
  32.           <Key>
  33.             <PropertyRef Name="Id" />
  34.           </Key>
  35.           <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  36.           <Property Name="Tag" Type="longtext" Nullable="false" />
  37.           <Property Name="HomeCupboardId" Type="int" />
  38.           <Property Name="CupboardId" Type="int" />
  39.           <Property Name="UserId" Type="int" />
  40.           <Property Name="Photo" Type="longtext" Nullable="false" />
  41.           <Property Name="Name" Type="longtext" Nullable="false" />
  42.           <Property Name="CreationDate" Type="datetime" Precision="0" Nullable="false" />
  43.           <Property Name="ModificationDate" Type="datetime" Precision="0" />
  44.           <Property Name="IsActive" Type="bool" Nullable="false" DefaultValue="true"/>
  45.         </EntityType>
  46.         <EntityType Name="users">
  47.           <Key>
  48.             <PropertyRef Name="Id" />
  49.           </Key>
  50.           <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  51.           <Property Name="Type" Type="smallint" Nullable="false" />
  52.           <Property Name="Firstname" Type="longtext" Nullable="false" />
  53.           <Property Name="LastName" Type="longtext" Nullable="false" />
  54.           <Property Name="Login" Type="longtext" Nullable="false" />
  55.           <Property Name="Gender" Type="smallint" Nullable="false" />
  56.           <Property Name="LangId" Type="smallint" Nullable="false" />
  57.           <Property Name="Photo" Type="longtext" Nullable="false" />
  58.           <Property Name="CreationDate" Type="datetime" Precision="0" Nullable="false" />
  59.           <Property Name="ModificationDate" Type="datetime" Precision="0" />
  60.           <Property Name="LastConnection" Type="datetime" Precision="0" />
  61.           <Property Name="DisableDate" Type="datetime" Precision="0" />
  62.           <Property Name="Active" Type="bool" Nullable="false" DefaultValue="true"/>
  63.         </EntityType>
  64.         <Association Name="FK_CupboardTool">
  65.           <End Role="cupboards" Type="Self.cupboards" Multiplicity="0..1" />
  66.           <End Role="tools" Type="Self.tools" Multiplicity="*" />
  67.           <ReferentialConstraint>
  68.             <Principal Role="cupboards">
  69.               <PropertyRef Name="Id" />
  70.             </Principal>
  71.             <Dependent Role="tools">
  72.               <PropertyRef Name="HomeCupboardId" />
  73.             </Dependent>
  74.           </ReferentialConstraint>
  75.         </Association>
  76.         <Association Name="FK_CupboardTool1">
  77.           <End Role="cupboards" Type="Self.cupboards" Multiplicity="0..1" />
  78.           <End Role="tools" Type="Self.tools" Multiplicity="*" />
  79.           <ReferentialConstraint>
  80.             <Principal Role="cupboards">
  81.               <PropertyRef Name="Id" />
  82.             </Principal>
  83.             <Dependent Role="tools">
  84.               <PropertyRef Name="CupboardId" />
  85.             </Dependent>
  86.           </ReferentialConstraint>
  87.         </Association>
  88.         <Association Name="FK_CupboardUser_Cupboard">
  89.           <End Role="cupboards" Type="Self.cupboards" Multiplicity="1" />
  90.           <End Role="cupboarduser" Type="Self.cupboarduser" Multiplicity="*" />
  91.           <ReferentialConstraint>
  92.             <Principal Role="cupboards">
  93.               <PropertyRef Name="Id" />
  94.             </Principal>
  95.             <Dependent Role="cupboarduser">
  96.               <PropertyRef Name="Cupboards_Id" />
  97.             </Dependent>
  98.           </ReferentialConstraint>
  99.         </Association>
  100.         <Association Name="FK_CupboardUser_User">
  101.           <End Role="users" Type="Self.users" Multiplicity="1" />
  102.           <End Role="cupboarduser" Type="Self.cupboarduser" Multiplicity="*" />
  103.           <ReferentialConstraint>
  104.             <Principal Role="users">
  105.               <PropertyRef Name="Id" />
  106.             </Principal>
  107.             <Dependent Role="cupboarduser">
  108.               <PropertyRef Name="Users_Id" />
  109.             </Dependent>
  110.           </ReferentialConstraint>
  111.         </Association>
  112.         <Association Name="FK_LangUser">
  113.           <End Role="langs" Type="Self.langs" Multiplicity="1" />
  114.           <End Role="users" Type="Self.users" Multiplicity="*" />
  115.           <ReferentialConstraint>
  116.             <Principal Role="langs">
  117.               <PropertyRef Name="Id" />
  118.             </Principal>
  119.             <Dependent Role="users">
  120.               <PropertyRef Name="LangId" />
  121.             </Dependent>
  122.           </ReferentialConstraint>
  123.         </Association>
  124.         <Association Name="FK_UserTool">
  125.           <End Role="users" Type="Self.users" Multiplicity="0..1" />
  126.           <End Role="tools" Type="Self.tools" Multiplicity="*" />
  127.           <ReferentialConstraint>
  128.             <Principal Role="users">
  129.               <PropertyRef Name="Id" />
  130.             </Principal>
  131.             <Dependent Role="tools">
  132.               <PropertyRef Name="UserId" />
  133.             </Dependent>
  134.           </ReferentialConstraint>
  135.         </Association>
  136.         <EntityContainer Name="ArmoireOutilsModelStoreContainer">
  137.           <EntitySet Name="cupboards" EntityType="Self.cupboards" Schema="armoireoutils" store:Type="Tables" />
  138.           <EntitySet Name="cupboarduser" EntityType="Self.cupboarduser" Schema="armoireoutils" store:Type="Tables" />
  139.           <EntitySet Name="langs" EntityType="Self.langs" Schema="armoireoutils" store:Type="Tables" />
  140.           <EntitySet Name="tools" EntityType="Self.tools" Schema="armoireoutils" store:Type="Tables" />
  141.           <EntitySet Name="users" EntityType="Self.users" Schema="armoireoutils" store:Type="Tables" />
  142.           <AssociationSet Name="FK_CupboardTool" Association="Self.FK_CupboardTool">
  143.             <End Role="cupboards" EntitySet="cupboards" />
  144.             <End Role="tools" EntitySet="tools" />
  145.           </AssociationSet>
  146.           <AssociationSet Name="FK_CupboardTool1" Association="Self.FK_CupboardTool1">
  147.             <End Role="cupboards" EntitySet="cupboards" />
  148.             <End Role="tools" EntitySet="tools" />
  149.           </AssociationSet>
  150.           <AssociationSet Name="FK_CupboardUser_Cupboard" Association="Self.FK_CupboardUser_Cupboard">
  151.             <End Role="cupboards" EntitySet="cupboards" />
  152.             <End Role="cupboarduser" EntitySet="cupboarduser" />
  153.           </AssociationSet>
  154.           <AssociationSet Name="FK_CupboardUser_User" Association="Self.FK_CupboardUser_User">
  155.             <End Role="users" EntitySet="users" />
  156.             <End Role="cupboarduser" EntitySet="cupboarduser" />
  157.           </AssociationSet>
  158.           <AssociationSet Name="FK_LangUser" Association="Self.FK_LangUser">
  159.             <End Role="langs" EntitySet="langs" />
  160.             <End Role="users" EntitySet="users" />
  161.           </AssociationSet>
  162.           <AssociationSet Name="FK_UserTool" Association="Self.FK_UserTool">
  163.             <End Role="users" EntitySet="users" />
  164.             <End Role="tools" EntitySet="tools" />
  165.           </AssociationSet>
  166.         </EntityContainer>
  167.       </Schema>
  168.     </edmx:StorageModels>
  169.     <!-- CSDL content -->
  170.     <edmx:ConceptualModels>
  171.       <Schema Namespace="ArmoireOutils.Model" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
  172.         <EntityType Name="Cupboard">
  173.           <Key>
  174.             <PropertyRef Name="Id" />
  175.           </Key>
  176.           <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  177.           <Property Name="GUID" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  178.           <NavigationProperty Name="ResidentTools" Relationship="Self.FK_CupboardTool" FromRole="cupboards" ToRole="tools" />
  179.           <NavigationProperty Name="Tools" Relationship="Self.FK_CupboardTool1" FromRole="cupboards" ToRole="tools" />
  180.           <NavigationProperty Name="Users" Relationship="Self.cupboarduser" FromRole="cupboards" ToRole="users" />
  181.         </EntityType>
  182.         <EntityType Name="Lang">
  183.           <Key>
  184.             <PropertyRef Name="Id" />
  185.           </Key>
  186.           <Property Name="Id" Type="Int16" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  187.           <Property Name="CountryCode" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  188.           <Property Name="DisplayName" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  189.           <NavigationProperty Name="Users" Relationship="Self.FK_LangUser" FromRole="langs" ToRole="users" />
  190.         </EntityType>
  191.         <EntityType Name="Tool">
  192.           <Key>
  193.             <PropertyRef Name="Id" />
  194.           </Key>
  195.           <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  196.           <Property Name="Tag" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  197.           <Property Name="HomeCupboardId" Type="Int32" />
  198.           <Property Name="CupboardId" Type="Int32" />
  199.           <Property Name="UserId" Type="Int32" />
  200.           <Property Name="Photo" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  201.           <Property Name="Name" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  202.           <Property Name="CreationDate" Type="DateTime" Nullable="false" />
  203.           <Property Name="ModificationDate" Type="DateTime" />
  204.           <Property Name="IsActive" Type="Boolean" Nullable="false" />
  205.           <NavigationProperty Name="HomeCupboard" Relationship="Self.FK_CupboardTool" FromRole="tools" ToRole="cupboards" />
  206.           <NavigationProperty Name="Cupboard" Relationship="Self.FK_CupboardTool1" FromRole="tools" ToRole="cupboards" />
  207.           <NavigationProperty Name="User" Relationship="Self.FK_UserTool" FromRole="tools" ToRole="users" />
  208.         </EntityType>
  209.         <EntityType Name="User">
  210.           <Key>
  211.             <PropertyRef Name="Id" />
  212.           </Key>
  213.           <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  214.           <Property Name="Type" Type="Int16" Nullable="false" />
  215.           <Property Name="Firstname" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  216.           <Property Name="LastName" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  217.           <Property Name="Login" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  218.           <Property Name="Gender" Type="Int16" Nullable="false" />
  219.           <Property Name="LangId" Type="Int16" Nullable="false" />
  220.           <Property Name="Photo" Type="String" MaxLength="1073741823" FixedLength="false" Unicode="false" Nullable="false" />
  221.           <Property Name="CreationDate" Type="DateTime" Nullable="false" />
  222.           <Property Name="ModificationDate" Type="DateTime" />
  223.           <Property Name="LastConnection" Type="DateTime" />
  224.           <Property Name="DisableDate" Type="DateTime" />
  225.           <Property Name="Active" Type="Boolean" Nullable="false" />
  226.           <NavigationProperty Name="Lang" Relationship="Self.FK_LangUser" FromRole="users" ToRole="langs" />
  227.           <NavigationProperty Name="Tools" Relationship="Self.FK_UserTool" FromRole="users" ToRole="tools" />
  228.           <NavigationProperty Name="Cupboards" Relationship="Self.cupboarduser" FromRole="users" ToRole="cupboards" />
  229.         </EntityType>
  230.         <Association Name="FK_CupboardTool">
  231.           <End Role="cupboards" Type="ArmoireOutils.Model.Cupboard" Multiplicity="0..1" />
  232.           <End Role="tools" Type="ArmoireOutils.Model.Tool" Multiplicity="*" />
  233.           <ReferentialConstraint>
  234.             <Principal Role="cupboards">
  235.               <PropertyRef Name="Id" />
  236.             </Principal>
  237.             <Dependent Role="tools">
  238.               <PropertyRef Name="HomeCupboardId" />
  239.             </Dependent>
  240.           </ReferentialConstraint>
  241.         </Association>
  242.         <Association Name="FK_CupboardTool1">
  243.           <End Role="cupboards" Type="ArmoireOutils.Model.Cupboard" Multiplicity="0..1" />
  244.           <End Role="tools" Type="ArmoireOutils.Model.Tool" Multiplicity="*" />
  245.           <ReferentialConstraint>
  246.             <Principal Role="cupboards">
  247.               <PropertyRef Name="Id" />
  248.             </Principal>
  249.             <Dependent Role="tools">
  250.               <PropertyRef Name="CupboardId" />
  251.             </Dependent>
  252.           </ReferentialConstraint>
  253.         </Association>
  254.         <Association Name="FK_LangUser">
  255.           <End Role="langs" Type="ArmoireOutils.Model.Lang" Multiplicity="1" />
  256.           <End Role="users" Type="ArmoireOutils.Model.User" Multiplicity="*" />
  257.           <ReferentialConstraint>
  258.             <Principal Role="langs">
  259.               <PropertyRef Name="Id" />
  260.             </Principal>
  261.             <Dependent Role="users">
  262.               <PropertyRef Name="LangId" />
  263.             </Dependent>
  264.           </ReferentialConstraint>
  265.         </Association>
  266.         <Association Name="FK_UserTool">
  267.           <End Role="users" Type="ArmoireOutils.Model.User" Multiplicity="0..1" />
  268.           <End Role="tools" Type="ArmoireOutils.Model.Tool" Multiplicity="*" />
  269.           <ReferentialConstraint>
  270.             <Principal Role="users">
  271.               <PropertyRef Name="Id" />
  272.             </Principal>
  273.             <Dependent Role="tools">
  274.               <PropertyRef Name="UserId" />
  275.             </Dependent>
  276.           </ReferentialConstraint>
  277.         </Association>
  278.         <Association Name="cupboarduser">
  279.           <End Role="cupboards" Type="ArmoireOutils.Model.Cupboard" Multiplicity="*" />
  280.           <End Role="users" Type="ArmoireOutils.Model.User" Multiplicity="*" />
  281.         </Association>
  282.         <EntityContainer Name="ArmoireOutilsEntities" annotation:LazyLoadingEnabled="true">
  283.           <EntitySet Name="Cupboards" EntityType="ArmoireOutils.Model.Cupboard" />
  284.           <EntitySet Name="Langs" EntityType="ArmoireOutils.Model.Lang" />
  285.           <EntitySet Name="Tools" EntityType="ArmoireOutils.Model.Tool" />
  286.           <EntitySet Name="Users" EntityType="ArmoireOutils.Model.User" />
  287.           <AssociationSet Name="FK_CupboardTool" Association="Self.FK_CupboardTool">
  288.             <End Role="cupboards" EntitySet="Cupboards" />
  289.             <End Role="tools" EntitySet="Tools" />
  290.           </AssociationSet>
  291.           <AssociationSet Name="FK_CupboardTool1" Association="Self.FK_CupboardTool1">
  292.             <End Role="cupboards" EntitySet="Cupboards" />
  293.             <End Role="tools" EntitySet="Tools" />
  294.           </AssociationSet>
  295.           <AssociationSet Name="FK_LangUser" Association="Self.FK_LangUser">
  296.             <End Role="langs" EntitySet="Langs" />
  297.             <End Role="users" EntitySet="Users" />
  298.           </AssociationSet>
  299.           <AssociationSet Name="FK_UserTool" Association="Self.FK_UserTool">
  300.             <End Role="users" EntitySet="Users" />
  301.             <End Role="tools" EntitySet="Tools" />
  302.           </AssociationSet>
  303.           <AssociationSet Name="cupboarduser" Association="Self.cupboarduser">
  304.             <End Role="cupboards" EntitySet="Cupboards" />
  305.             <End Role="users" EntitySet="Users" />
  306.           </AssociationSet>
  307.         </EntityContainer>
  308.       </Schema>
  309.     </edmx:ConceptualModels>
  310.     <!-- C-S mapping content -->
  311.     <edmx:Mappings>
  312.       <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  313.         <EntityContainerMapping StorageEntityContainer="ArmoireOutilsModelStoreContainer" CdmEntityContainer="ArmoireOutilsEntities">
  314.           <EntitySetMapping Name="Cupboards">
  315.             <EntityTypeMapping TypeName="ArmoireOutils.Model.Cupboard">
  316.               <MappingFragment StoreEntitySet="cupboards">
  317.                 <ScalarProperty Name="Id" ColumnName="Id" />
  318.                 <ScalarProperty Name="GUID" ColumnName="GUID" />
  319.               </MappingFragment>
  320.             </EntityTypeMapping>
  321.           </EntitySetMapping>
  322.           <EntitySetMapping Name="Langs">
  323.             <EntityTypeMapping TypeName="ArmoireOutils.Model.Lang">
  324.               <MappingFragment StoreEntitySet="langs">
  325.                 <ScalarProperty Name="Id" ColumnName="Id" />
  326.                 <ScalarProperty Name="CountryCode" ColumnName="CountryCode" />
  327.                 <ScalarProperty Name="DisplayName" ColumnName="DisplayName" />
  328.               </MappingFragment>
  329.             </EntityTypeMapping>
  330.           </EntitySetMapping>
  331.           <EntitySetMapping Name="Tools">
  332.             <EntityTypeMapping TypeName="ArmoireOutils.Model.Tool">
  333.               <MappingFragment StoreEntitySet="tools">
  334.                 <ScalarProperty Name="Id" ColumnName="Id" />
  335.                 <ScalarProperty Name="Tag" ColumnName="Tag" />
  336.                 <ScalarProperty Name="HomeCupboardId" ColumnName="HomeCupboardId" />
  337.                 <ScalarProperty Name="CupboardId" ColumnName="CupboardId" />
  338.                 <ScalarProperty Name="UserId" ColumnName="UserId" />
  339.                 <ScalarProperty Name="Photo" ColumnName="Photo" />
  340.                 <ScalarProperty Name="Name" ColumnName="Name" />
  341.                 <ScalarProperty Name="CreationDate" ColumnName="CreationDate" />
  342.                 <ScalarProperty Name="ModificationDate" ColumnName="ModificationDate" />
  343.                 <ScalarProperty Name="IsActive" ColumnName="IsActive" />
  344.               </MappingFragment>
  345.             </EntityTypeMapping>
  346.           </EntitySetMapping>
  347.           <EntitySetMapping Name="Users">
  348.             <EntityTypeMapping TypeName="ArmoireOutils.Model.User">
  349.               <MappingFragment StoreEntitySet="users">
  350.                 <ScalarProperty Name="Id" ColumnName="Id" />
  351.                 <ScalarProperty Name="Type" ColumnName="Type" />
  352.                 <ScalarProperty Name="Firstname" ColumnName="Firstname" />
  353.                 <ScalarProperty Name="LastName" ColumnName="LastName" />
  354.                 <ScalarProperty Name="Login" ColumnName="Login" />
  355.                 <ScalarProperty Name="Gender" ColumnName="Gender" />
  356.                 <ScalarProperty Name="LangId" ColumnName="LangId" />
  357.                 <ScalarProperty Name="Photo" ColumnName="Photo" />
  358.                 <ScalarProperty Name="CreationDate" ColumnName="CreationDate" />
  359.                 <ScalarProperty Name="ModificationDate" ColumnName="ModificationDate" />
  360.                 <ScalarProperty Name="LastConnection" ColumnName="LastConnection" />
  361.                 <ScalarProperty Name="DisableDate" ColumnName="DisableDate" />
  362.                 <ScalarProperty Name="Active" ColumnName="Active" />
  363.               </MappingFragment>
  364.             </EntityTypeMapping>
  365.           </EntitySetMapping>
  366.           <AssociationSetMapping Name="cupboarduser" TypeName="ArmoireOutils.Model.cupboarduser" StoreEntitySet="cupboarduser">
  367.             <EndProperty Name="cupboards">
  368.               <ScalarProperty Name="Id" ColumnName="Cupboards_Id" />
  369.             </EndProperty>
  370.             <EndProperty Name="users">
  371.               <ScalarProperty Name="Id" ColumnName="Users_Id" />
  372.             </EndProperty>
  373.           </AssociationSetMapping>
  374.         </EntityContainerMapping>
  375.       </Mapping>
  376.     </edmx:Mappings>
  377.   </edmx:Runtime>
  378.   <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  379.   <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  380.     <Connection>
  381.       <DesignerInfoPropertySet>
  382.         <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  383.       </DesignerInfoPropertySet>
  384.     </Connection>
  385.     <Options>
  386.       <DesignerInfoPropertySet>
  387.         <DesignerProperty Name="ValidateOnBuild" Value="true" />
  388.         <DesignerProperty Name="EnablePluralization" Value="true" />
  389.         <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  390.         <DesignerProperty Name="UseLegacyProvider" Value="false" />
  391.         <DesignerProperty Name="CodeGenerationStrategy" Value="None" />
  392.       </DesignerInfoPropertySet>
  393.     </Options>
  394.     <!-- Diagram content (shape and connector positions) -->
  395.     <Diagrams></Diagrams>
  396.   </Designer>
  397. </edmx:Edmx>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement