151 lines
7.8 KiB
C#
151 lines
7.8 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using Blink.Backoffice.Services.PcmDb.Entities;
|
|
using Microsoft.EntityFrameworkCore.ChangeTracking;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal;
|
|
using Microsoft.EntityFrameworkCore.Storage;
|
|
|
|
#pragma warning disable 219, 612, 618
|
|
#nullable disable
|
|
|
|
namespace Blink.Backoffice.Services.PcmDb.CompiledEntities
|
|
{
|
|
internal partial class TekstDokEntityType
|
|
{
|
|
public static RuntimeEntityType Create(RuntimeModel model, RuntimeEntityType baseEntityType = null)
|
|
{
|
|
var runtimeEntityType = model.AddEntityType(
|
|
"Blink.Backoffice.Services.PcmDb.Entities.TekstDok",
|
|
typeof(TekstDok),
|
|
baseEntityType);
|
|
|
|
var dokId = runtimeEntityType.AddProperty(
|
|
"DokId",
|
|
typeof(decimal),
|
|
propertyInfo: typeof(TekstDok).GetProperty("DokId", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(TekstDok).GetField("<DokId>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
afterSaveBehavior: PropertySaveBehavior.Throw,
|
|
sentinel: 0m);
|
|
dokId.TypeMapping = SqlServerDecimalTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<decimal>(
|
|
(decimal v1, decimal v2) => v1 == v2,
|
|
(decimal v) => v.GetHashCode(),
|
|
(decimal v) => v),
|
|
keyComparer: new ValueComparer<decimal>(
|
|
(decimal v1, decimal v2) => v1 == v2,
|
|
(decimal v) => v.GetHashCode(),
|
|
(decimal v) => v),
|
|
providerValueComparer: new ValueComparer<decimal>(
|
|
(decimal v1, decimal v2) => v1 == v2,
|
|
(decimal v) => v.GetHashCode(),
|
|
(decimal v) => v),
|
|
mappingInfo: new RelationalTypeMappingInfo(
|
|
storeTypeName: "numeric(9,0)",
|
|
precision: 9,
|
|
scale: 0));
|
|
dokId.AddAnnotation("Relational:ColumnType", "numeric(9, 0)");
|
|
dokId.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var znaczenie = runtimeEntityType.AddProperty(
|
|
"Znaczenie",
|
|
typeof(short),
|
|
propertyInfo: typeof(TekstDok).GetProperty("Znaczenie", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(TekstDok).GetField("<Znaczenie>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
afterSaveBehavior: PropertySaveBehavior.Throw,
|
|
sentinel: (short)0);
|
|
znaczenie.TypeMapping = SqlServerShortTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<short>(
|
|
(short v1, short v2) => v1 == v2,
|
|
(short v) => (int)v,
|
|
(short v) => v),
|
|
keyComparer: new ValueComparer<short>(
|
|
(short v1, short v2) => v1 == v2,
|
|
(short v) => (int)v,
|
|
(short v) => v),
|
|
providerValueComparer: new ValueComparer<short>(
|
|
(short v1, short v2) => v1 == v2,
|
|
(short v) => (int)v,
|
|
(short v) => v));
|
|
znaczenie.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var tekst = runtimeEntityType.AddProperty(
|
|
"Tekst",
|
|
typeof(string),
|
|
propertyInfo: typeof(TekstDok).GetProperty("Tekst", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(TekstDok).GetField("<Tekst>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
maxLength: 255,
|
|
unicode: false);
|
|
tekst.TypeMapping = SqlServerStringTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<string>(
|
|
(string l, string r) => string.Equals(l, r, StringComparison.OrdinalIgnoreCase),
|
|
(string v) => v == null ? 0 : StringComparer.OrdinalIgnoreCase.GetHashCode(v),
|
|
(string v) => v),
|
|
keyComparer: new ValueComparer<string>(
|
|
(string l, string r) => string.Equals(l, r, StringComparison.OrdinalIgnoreCase),
|
|
(string v) => v == null ? 0 : StringComparer.OrdinalIgnoreCase.GetHashCode(v),
|
|
(string v) => v),
|
|
providerValueComparer: new ValueComparer<string>(
|
|
(string l, string r) => string.Equals(l, r, StringComparison.OrdinalIgnoreCase),
|
|
(string v) => v == null ? 0 : StringComparer.OrdinalIgnoreCase.GetHashCode(v),
|
|
(string v) => v),
|
|
mappingInfo: new RelationalTypeMappingInfo(
|
|
storeTypeName: "varchar(255)",
|
|
size: 255));
|
|
tekst.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var key = runtimeEntityType.AddKey(
|
|
new[] { dokId, znaczenie });
|
|
runtimeEntityType.SetPrimaryKey(key);
|
|
key.AddAnnotation("Relational:Name", "PK_TEKSTDOK");
|
|
|
|
var idx_TekstDokTekstZnaczenie = runtimeEntityType.AddIndex(
|
|
new[] { tekst, znaczenie },
|
|
name: "idx_TekstDokTekstZnaczenie");
|
|
|
|
return runtimeEntityType;
|
|
}
|
|
|
|
public static RuntimeForeignKey CreateForeignKey1(RuntimeEntityType declaringEntityType, RuntimeEntityType principalEntityType)
|
|
{
|
|
var runtimeForeignKey = declaringEntityType.AddForeignKey(new[] { declaringEntityType.FindProperty("DokId") },
|
|
principalEntityType.FindKey(new[] { principalEntityType.FindProperty("DokId") }),
|
|
principalEntityType,
|
|
required: true);
|
|
|
|
var dok = declaringEntityType.AddNavigation("Dok",
|
|
runtimeForeignKey,
|
|
onDependent: true,
|
|
typeof(Dok),
|
|
propertyInfo: typeof(TekstDok).GetProperty("Dok", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(TekstDok).GetField("<Dok>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly));
|
|
|
|
var tekstDok = principalEntityType.AddNavigation("TekstDok",
|
|
runtimeForeignKey,
|
|
onDependent: false,
|
|
typeof(ICollection<TekstDok>),
|
|
propertyInfo: typeof(Dok).GetProperty("TekstDok", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(Dok).GetField("<TekstDok>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly));
|
|
|
|
runtimeForeignKey.AddAnnotation("Relational:Name", "FK_TEKSTDOK_REF_TEKST_DOK");
|
|
return runtimeForeignKey;
|
|
}
|
|
|
|
public static void CreateAnnotations(RuntimeEntityType runtimeEntityType)
|
|
{
|
|
runtimeEntityType.AddAnnotation("Relational:FunctionName", null);
|
|
runtimeEntityType.AddAnnotation("Relational:Schema", null);
|
|
runtimeEntityType.AddAnnotation("Relational:SqlQuery", null);
|
|
runtimeEntityType.AddAnnotation("Relational:TableName", "TekstDok");
|
|
runtimeEntityType.AddAnnotation("Relational:ViewName", null);
|
|
runtimeEntityType.AddAnnotation("Relational:ViewSchema", null);
|
|
|
|
Customize(runtimeEntityType);
|
|
}
|
|
|
|
static partial void Customize(RuntimeEntityType runtimeEntityType);
|
|
}
|
|
}
|