OSS인증
- 팀장 : 서영민
- 팀원 : 김현, 박상진, 박승영, 윤동수, 김성미
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="utf-8"?><edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx"> <!-- EF Runtime content --> <edmx:Runtime> <!-- SSDL content --> <edmx:StorageModels> <Schema Namespace="TestDBModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" 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"> <EntityType Name="Employ_Table"> <Key> <PropertyRef Name="EmployNum" /> </Key> <Property Name="EmployNum" Type="int" Nullable="false" /> <Property Name="Password" Type="nvarchar" MaxLength="20" Nullable="false" /> <Property Name="Name" Type="nvarchar" MaxLength="50" Nullable="false" /> </EntityType> <EntityContainer Name="TestDBModelStoreContainer"> <EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" Schema="dbo" store:Type="Tables" /> </EntityContainer> </Schema> </edmx:StorageModels> <!-- CSDL content --> <edmx:ConceptualModels> <Schema Namespace="TestDBModel" 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"> <EntityType Name="Employ_Table"> <Key> <PropertyRef Name="EmployNum" /> </Key> <Property Name="EmployNum" Type="Int32" Nullable="false" /> <Property Name="Password" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" /> <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" /> </EntityType> <EntityContainer Name="EmployerListEntities" annotation:LazyLoadingEnabled="true"> <EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" /> </EntityContainer> </Schema> </edmx:ConceptualModels> <!-- C-S mapping content --> <edmx:Mappings> <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs"> <EntityContainerMapping StorageEntityContainer="TestDBModelStoreContainer" CdmEntityContainer="EmployerListEntities"> <EntitySetMapping Name="Employ_Table"> <EntityTypeMapping TypeName="TestDBModel.Employ_Table"> <MappingFragment StoreEntitySet="Employ_Table"> <ScalarProperty Name="EmployNum" ColumnName="EmployNum" /> <ScalarProperty Name="Password" ColumnName="Password" /> <ScalarProperty Name="Name" ColumnName="Name" /> </MappingFragment> </EntityTypeMapping> </EntitySetMapping> </EntityContainerMapping> </Mapping> </edmx:Mappings> </edmx:Runtime> <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) --> <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx"> <Connection> <DesignerInfoPropertySet> <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" /> </DesignerInfoPropertySet> </Connection> <Options> <DesignerInfoPropertySet> <DesignerProperty Name="ValidateOnBuild" Value="true" /> <DesignerProperty Name="EnablePluralization" Value="false" /> <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" /> <DesignerProperty Name="UseLegacyProvider" Value="false" /> <DesignerProperty Name="CodeGenerationStrategy" Value="없음" /> </DesignerInfoPropertySet> </Options> <!-- Diagram content (shape and connector positions) --> <Diagrams></Diagrams> </Designer></edmx:Edmx>
|