| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="utf-8"?>
- <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>
|