123.csdl 1.2 KB

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="Model1" 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">
  3. <EntityType Name="Service">
  4. <Key>
  5. <PropertyRef Name="ID" />
  6. </Key>
  7. <Property Name="ID" Type="Int32" Nullable="false" />
  8. <Property Name="Title" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
  9. <Property Name="Cost" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
  10. <Property Name="DurationInSeconds" Type="Int32" Nullable="false" />
  11. <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  12. <Property Name="Discount" Type="Double" />
  13. <Property Name="MainImagePath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  14. </EntityType>
  15. <EntityContainer Name="Lyahov_EkzamenEntities" annotation:LazyLoadingEnabled="true">
  16. <EntitySet Name="Service" EntityType="Self.Service" />
  17. </EntityContainer>
  18. </Schema>