Ei kuvausta

Model1.csdl 935B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3. <EntityContainer Name="labEntities" annotation:LazyLoadingEnabled="true">
  4. <EntitySet Name="users" EntityType="labModel.user" />
  5. </EntityContainer>
  6. <EntityType Name="user">
  7. <Key>
  8. <PropertyRef Name="id" />
  9. </Key>
  10. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  11. <Property Name="email" Type="String" MaxLength="40" Unicode="true" FixedLength="true" />
  12. <Property Name="hashed_password" Type="String" MaxLength="250" Unicode="true" FixedLength="true" />
  13. <Property Name="created_at" Type="DateTime" />
  14. <Property Name="updated_at" Type="DateTime" />
  15. <Property Name="active" Type="Boolean" />
  16. </EntityType>
  17. </Schema>