Files
BoilerPlate/Models/Model1.edmx
2025-07-23 18:54:59 +03:30

193 lines
13 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
<!-- EF Runtime content -->
<edmx:Runtime>
<!-- SSDL content -->
<edmx:StorageModels>
<Schema Namespace="boilerplateModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
<EntityType Name="Setting">
<Key>
<PropertyRef Name="Setting_Id" />
</Key>
<Property Name="Setting_Id" Type="tinyint" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="Setting_Name" Type="nvarchar" MaxLength="150" />
<Property Name="Setting_Title" Type="nvarchar" MaxLength="150" />
<Property Name="Setting_Discount" Type="int" Nullable="false" />
<Property Name="Setting_Description" Type="nvarchar(max)" />
<Property Name="Setting_Keywords" Type="nvarchar(max)" />
<Property Name="Setting_Header" Type="nvarchar(max)" />
<Property Name="Setting_Footer" Type="nvarchar(max)" />
<Property Name="Setting_Social" Type="nvarchar(max)" />
<Property Name="Setting_Username" Type="nvarchar" MaxLength="50" />
<Property Name="Setting_Password" Type="nvarchar" MaxLength="50" />
<Property Name="Setting_FromNumber" Type="nvarchar" MaxLength="50" />
<Property Name="Setting_Send" Type="bit" Nullable="false" />
<Property Name="Setting_PaternLogin" Type="nvarchar" MaxLength="50" />
<Property Name="Setting_Service" Type="nvarchar(max)" />
<Property Name="Setting_Address" Type="nvarchar(max)" />
<Property Name="Setting_PostCode" Type="nvarchar" MaxLength="50" />
<Property Name="Setting_Phone" Type="nvarchar" MaxLength="50" />
<Property Name="Setting_Website" Type="nvarchar" MaxLength="150" />
</EntityType>
<EntityType Name="User">
<Key>
<PropertyRef Name="User_Id" />
</Key>
<Property Name="User_Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="User_Name" Type="nvarchar" MaxLength="150" />
<Property Name="User_Family" Type="nvarchar" MaxLength="150" />
<Property Name="User_Image" Type="nvarchar" MaxLength="50" />
<Property Name="User_NationalCode" Type="nvarchar" MaxLength="50" />
<Property Name="User_Phone" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="User_Password" Type="nvarchar" MaxLength="150" />
<Property Name="User_Code" Type="int" />
<Property Name="User_Token" Type="nvarchar" MaxLength="150" />
<Property Name="User_Status" Type="int" Nullable="false" />
<Property Name="User_Role" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="User_Access" Type="nvarchar(max)" Nullable="false" />
<Property Name="User_Email" Type="nvarchar" MaxLength="350" />
<Property Name="User_Birthday" Type="nvarchar" MaxLength="50" />
<Property Name="User_CreatedDate" Type="datetime2" Precision="7" Nullable="false" />
<Property Name="User_CreatedDateFa" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="User_LoginDate" Type="datetime2" Precision="7" />
<Property Name="User_LoginDateFa" Type="nvarchar" MaxLength="50" />
</EntityType>
<EntityContainer Name="boilerplateModelStoreContainer">
<EntitySet Name="Setting" EntityType="Self.Setting" Schema="dbo" store:Type="Tables" />
<EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
</EntityContainer>
</Schema>
</edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="boilerplateModel" 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="Setting">
<Key>
<PropertyRef Name="Setting_Id" />
</Key>
<Property Name="Setting_Id" Type="Byte" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="Setting_Name" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
<Property Name="Setting_Title" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
<Property Name="Setting_Discount" Type="Int32" Nullable="false" />
<Property Name="Setting_Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="Setting_Keywords" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="Setting_Header" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="Setting_Footer" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="Setting_Social" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="Setting_Username" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="Setting_Password" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="Setting_FromNumber" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="Setting_Send" Type="Boolean" Nullable="false" />
<Property Name="Setting_PaternLogin" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="Setting_Service" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="Setting_Address" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="Setting_PostCode" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="Setting_Phone" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="Setting_Website" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
</EntityType>
<EntityType Name="User">
<Key>
<PropertyRef Name="User_Id" />
</Key>
<Property Name="User_Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="User_Name" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
<Property Name="User_Family" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
<Property Name="User_Image" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="User_NationalCode" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="User_Phone" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="User_Password" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
<Property Name="User_Code" Type="Int32" />
<Property Name="User_Token" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
<Property Name="User_Status" Type="Int32" Nullable="false" />
<Property Name="User_Role" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="User_Access" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="User_Email" Type="String" MaxLength="350" FixedLength="false" Unicode="true" />
<Property Name="User_Birthday" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="User_CreatedDate" Type="DateTime" Nullable="false" Precision="7" />
<Property Name="User_CreatedDateFa" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="User_LoginDate" Type="DateTime" Precision="7" />
<Property Name="User_LoginDateFa" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
</EntityType>
<EntityContainer Name="boilerplateEntities" annotation:LazyLoadingEnabled="true">
<EntitySet Name="Settings" EntityType="Self.Setting" />
<EntitySet Name="Users" EntityType="Self.User" />
</EntityContainer>
</Schema>
</edmx:ConceptualModels>
<!-- C-S mapping content -->
<edmx:Mappings>
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
<EntityContainerMapping StorageEntityContainer="boilerplateModelStoreContainer" CdmEntityContainer="boilerplateEntities">
<EntitySetMapping Name="Settings">
<EntityTypeMapping TypeName="boilerplateModel.Setting">
<MappingFragment StoreEntitySet="Setting">
<ScalarProperty Name="Setting_Id" ColumnName="Setting_Id" />
<ScalarProperty Name="Setting_Name" ColumnName="Setting_Name" />
<ScalarProperty Name="Setting_Title" ColumnName="Setting_Title" />
<ScalarProperty Name="Setting_Discount" ColumnName="Setting_Discount" />
<ScalarProperty Name="Setting_Description" ColumnName="Setting_Description" />
<ScalarProperty Name="Setting_Keywords" ColumnName="Setting_Keywords" />
<ScalarProperty Name="Setting_Header" ColumnName="Setting_Header" />
<ScalarProperty Name="Setting_Footer" ColumnName="Setting_Footer" />
<ScalarProperty Name="Setting_Social" ColumnName="Setting_Social" />
<ScalarProperty Name="Setting_Username" ColumnName="Setting_Username" />
<ScalarProperty Name="Setting_Password" ColumnName="Setting_Password" />
<ScalarProperty Name="Setting_FromNumber" ColumnName="Setting_FromNumber" />
<ScalarProperty Name="Setting_Send" ColumnName="Setting_Send" />
<ScalarProperty Name="Setting_PaternLogin" ColumnName="Setting_PaternLogin" />
<ScalarProperty Name="Setting_Service" ColumnName="Setting_Service" />
<ScalarProperty Name="Setting_Address" ColumnName="Setting_Address" />
<ScalarProperty Name="Setting_PostCode" ColumnName="Setting_PostCode" />
<ScalarProperty Name="Setting_Phone" ColumnName="Setting_Phone" />
<ScalarProperty Name="Setting_Website" ColumnName="Setting_Website" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="Users">
<EntityTypeMapping TypeName="boilerplateModel.User">
<MappingFragment StoreEntitySet="User">
<ScalarProperty Name="User_Id" ColumnName="User_Id" />
<ScalarProperty Name="User_Name" ColumnName="User_Name" />
<ScalarProperty Name="User_Family" ColumnName="User_Family" />
<ScalarProperty Name="User_Image" ColumnName="User_Image" />
<ScalarProperty Name="User_NationalCode" ColumnName="User_NationalCode" />
<ScalarProperty Name="User_Phone" ColumnName="User_Phone" />
<ScalarProperty Name="User_Password" ColumnName="User_Password" />
<ScalarProperty Name="User_Code" ColumnName="User_Code" />
<ScalarProperty Name="User_Token" ColumnName="User_Token" />
<ScalarProperty Name="User_Status" ColumnName="User_Status" />
<ScalarProperty Name="User_Role" ColumnName="User_Role" />
<ScalarProperty Name="User_Access" ColumnName="User_Access" />
<ScalarProperty Name="User_Email" ColumnName="User_Email" />
<ScalarProperty Name="User_Birthday" ColumnName="User_Birthday" />
<ScalarProperty Name="User_CreatedDate" ColumnName="User_CreatedDate" />
<ScalarProperty Name="User_CreatedDateFa" ColumnName="User_CreatedDateFa" />
<ScalarProperty Name="User_LoginDate" ColumnName="User_LoginDate" />
<ScalarProperty Name="User_LoginDateFa" ColumnName="User_LoginDateFa" />
</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/2009/11/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" />
<DesignerProperty Name="UseLegacyProvider" Value="false" />
<DesignerProperty Name="CodeGenerationStrategy" Value="None" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams></Diagrams>
</Designer>
</edmx:Edmx>