EntityModel.edmx 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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="ModeleMVC.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2012" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
  8. <EntityContainer Name="ModeleMVCStoreContainer">
  9. </EntityContainer>
  10. </Schema></edmx:StorageModels>
  11. <!-- CSDL content -->
  12. <edmx:ConceptualModels>
  13. <Schema Namespace="ModeleMVC" 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">
  14. <EntityContainer Name="ModeleMVCEntities" annotation:LazyLoadingEnabled="true">
  15. </EntityContainer>
  16. </Schema>
  17. </edmx:ConceptualModels>
  18. <!-- C-S mapping content -->
  19. <edmx:Mappings>
  20. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  21. <EntityContainerMapping StorageEntityContainer="ModeleMVCStoreContainer" CdmEntityContainer="ModeleMVCEntities">
  22. </EntityContainerMapping>
  23. </Mapping></edmx:Mappings>
  24. </edmx:Runtime>
  25. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  26. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  27. <Connection>
  28. <DesignerInfoPropertySet>
  29. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  30. </DesignerInfoPropertySet>
  31. </Connection>
  32. <Options>
  33. <DesignerInfoPropertySet>
  34. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  35. <DesignerProperty Name="EnablePluralization" Value="false" />
  36. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  37. <DesignerProperty Name="UseLegacyProvider" Value="False" />
  38. <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
  39. </DesignerInfoPropertySet>
  40. </Options>
  41. <!-- Diagram content (shape and connector positions) -->
  42. <Diagrams></Diagrams>
  43. </Designer>
  44. </edmx:Edmx>