123456789101112131415161718 |
- <?xml version="1.0" encoding="utf-8"?>
- <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">
- <EntityType Name="Service">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" />
- <Property Name="Title" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Cost" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
- <Property Name="DurationInSeconds" Type="Int32" Nullable="false" />
- <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="Discount" Type="Double" />
- <Property Name="MainImagePath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
- </EntityType>
- <EntityContainer Name="Lyahov_EkzamenEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="Service" EntityType="Self.Service" />
- </EntityContainer>
- </Schema>
|