| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?xml version="1.0" encoding="utf-8"?>
- <edmx:Edmx Version="2.0" xmlns:edmx="http://schemas.microsoft.com/ado/2008/10/edmx">
- <!-- EF Runtime content -->
- <edmx:Runtime>
- <!-- SSDL content -->
- <edmx:StorageModels>
- <Schema Namespace="labModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
- <EntityContainer Name="labModelStoreContainer">
- <EntitySet Name="users" EntityType="labModel.Store.users" store:Type="Tables" Schema="dbo" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" />
- </EntityContainer>
- <EntityType Name="users">
- <Key>
- <PropertyRef Name="id" />
- </Key>
- <Property Name="id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="email" Type="nchar" MaxLength="40" />
- <Property Name="hashed_password" Type="nchar" MaxLength="250" />
- <Property Name="created_at" Type="datetime" />
- <Property Name="updated_at" Type="datetime" />
- <Property Name="active" Type="bit" />
- </EntityType>
- <!--Errors Found During Generation:
- warning 6013: The table/view 'lab.dbo.v_master_view' does not have a primary key defined and no valid primary key could be inferred. This table/view has been excluded. To use the entity, you will need to review your schema, add the correct keys, and uncomment it.
-
- <EntityType Name="v_master_view">
- <Property Name="PRO1" Type="float" />
- <Property Name="PRO1C" Type="nvarchar" MaxLength="255" />
- <Property Name="PRO2" Type="nvarchar" MaxLength="255" />
- <Property Name="PRO5" Type="float" />
- <Property Name="PRO8" Type="float" />
- <Property Name="PRO9" Type="nvarchar" MaxLength="255" />
- <Property Name="PRO10" Type="float" />
- <Property Name="PRO11" Type="float" />
- <Property Name="PRO12" Type="float" />
- <Property Name="PRO13" Type="nvarchar" MaxLength="255" />
- <Property Name="PRO14" Type="float" />
- <Property Name="PRO15" Type="nvarchar" MaxLength="255" />
- <Property Name="PRO16" Type="float" />
- <Property Name="PRO17" Type="nvarchar" MaxLength="255" />
- <Property Name="PRO18" Type="nvarchar" MaxLength="255" />
- <Property Name="MC23" Type="nvarchar" MaxLength="255" />
- <Property Name="MC20" Type="float" />
- <Property Name="MP34" Type="nvarchar" MaxLength="255" />
- <Property Name="MP39" Type="nvarchar" MaxLength="255" />
- <Property Name="MI13" Type="float" />
- <Property Name="TC" Type="float" />
- <Property Name="MI14" Type="float" />
- <Property Name="MI15" Type="float" />
- <Property Name="MI16" Type="float" />
- <Property Name="MI17" Type="nvarchar" MaxLength="255" />
- <Property Name="MI18" Type="float" />
- <Property Name="MI19" Type="float" />
- <Property Name="MI20" Type="float" />
- <Property Name="MI21" Type="nvarchar" MaxLength="255" />
- <Property Name="MI22" Type="float" />
- <Property Name="MI23" Type="float" />
- <Property Name="MI31" Type="nvarchar" MaxLength="255" />
- <Property Name="MI33" Type="nvarchar" MaxLength="255" />
- <Property Name="INSAGM" Type="nvarchar" MaxLength="255" />
- <Property Name="MARAGM" Type="nvarchar" MaxLength="255" />
- </EntityType>-->
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="labModel" Alias="Self" xmlns="http://schemas.microsoft.com/ado/2008/09/edm" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
- <EntityContainer Name="labEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="users" EntityType="labModel.user" />
- </EntityContainer>
- <EntityType Name="user">
- <Key>
- <PropertyRef Name="id" />
- </Key>
- <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="email" Type="String" MaxLength="40" Unicode="true" FixedLength="true" />
- <Property Name="hashed_password" Type="String" MaxLength="250" Unicode="true" FixedLength="true" />
- <Property Name="created_at" Type="DateTime" />
- <Property Name="updated_at" Type="DateTime" />
- <Property Name="active" Type="Boolean" />
- </EntityType>
- </Schema>
- </edmx:ConceptualModels>
- <!-- C-S mapping content -->
- <edmx:Mappings>
- <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs">
- <EntityContainerMapping StorageEntityContainer="labModelStoreContainer" CdmEntityContainer="labEntities">
- <EntitySetMapping Name="users"><EntityTypeMapping TypeName="labModel.user"><MappingFragment StoreEntitySet="users">
- <ScalarProperty Name="id" ColumnName="id" />
- <ScalarProperty Name="email" ColumnName="email" />
- <ScalarProperty Name="hashed_password" ColumnName="hashed_password" />
- <ScalarProperty Name="created_at" ColumnName="created_at" />
- <ScalarProperty Name="updated_at" ColumnName="updated_at" />
- <ScalarProperty Name="active" ColumnName="active" />
- </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/2008/10/edmx">
- <Connection>
- <DesignerInfoPropertySet>
- <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
- </DesignerInfoPropertySet>
- </Connection>
- <Options>
- <DesignerInfoPropertySet>
- <DesignerProperty Name="ValidateOnBuild" Value="true" />
- <DesignerProperty Name="EnablePluralization" Value="True" />
- <DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
- </DesignerInfoPropertySet>
- </Options>
- <!-- Diagram content (shape and connector positions) -->
- <Diagrams>
- <Diagram Name="Model1">
- <EntityTypeShape EntityType="labModel.user" Width="1.5" PointX="0.75" PointY="0.75" Height="2.172587890625" IsExpanded="true" />
- </Diagram>
- </Diagrams>
- </Designer>
- </edmx:Edmx>
|