191 lines
11 KiB
C#
191 lines
11 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 PowiadomienieParamEntityType
|
|
{
|
|
public static RuntimeEntityType Create(RuntimeModel model, RuntimeEntityType baseEntityType = null)
|
|
{
|
|
var runtimeEntityType = model.AddEntityType(
|
|
"Blink.Backoffice.Services.PcmDb.Entities.PowiadomienieParam",
|
|
typeof(PowiadomienieParam),
|
|
baseEntityType);
|
|
|
|
var powiadomienieId = runtimeEntityType.AddProperty(
|
|
"PowiadomienieId",
|
|
typeof(decimal),
|
|
propertyInfo: typeof(PowiadomienieParam).GetProperty("PowiadomienieId", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(PowiadomienieParam).GetField("<PowiadomienieId>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
afterSaveBehavior: PropertySaveBehavior.Throw,
|
|
sentinel: 0m);
|
|
powiadomienieId.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));
|
|
powiadomienieId.AddAnnotation("Relational:ColumnType", "numeric(9, 0)");
|
|
powiadomienieId.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var znaczenie = runtimeEntityType.AddProperty(
|
|
"Znaczenie",
|
|
typeof(short),
|
|
propertyInfo: typeof(PowiadomienieParam).GetProperty("Znaczenie", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(PowiadomienieParam).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 kolejnosc = runtimeEntityType.AddProperty(
|
|
"Kolejnosc",
|
|
typeof(int),
|
|
propertyInfo: typeof(PowiadomienieParam).GetProperty("Kolejnosc", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(PowiadomienieParam).GetField("<Kolejnosc>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
afterSaveBehavior: PropertySaveBehavior.Throw,
|
|
sentinel: 0);
|
|
kolejnosc.TypeMapping = IntTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<int>(
|
|
(int v1, int v2) => v1 == v2,
|
|
(int v) => v,
|
|
(int v) => v),
|
|
keyComparer: new ValueComparer<int>(
|
|
(int v1, int v2) => v1 == v2,
|
|
(int v) => v,
|
|
(int v) => v),
|
|
providerValueComparer: new ValueComparer<int>(
|
|
(int v1, int v2) => v1 == v2,
|
|
(int v) => v,
|
|
(int v) => v));
|
|
kolejnosc.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var param1 = runtimeEntityType.AddProperty(
|
|
"Param1",
|
|
typeof(int?),
|
|
propertyInfo: typeof(PowiadomienieParam).GetProperty("Param1", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(PowiadomienieParam).GetField("<Param1>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
nullable: true);
|
|
param1.TypeMapping = IntTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<int?>(
|
|
(Nullable<int> v1, Nullable<int> v2) => v1.HasValue && v2.HasValue && (int)v1 == (int)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<int> v) => v.HasValue ? (int)v : 0,
|
|
(Nullable<int> v) => v.HasValue ? (Nullable<int>)(int)v : default(Nullable<int>)),
|
|
keyComparer: new ValueComparer<int?>(
|
|
(Nullable<int> v1, Nullable<int> v2) => v1.HasValue && v2.HasValue && (int)v1 == (int)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<int> v) => v.HasValue ? (int)v : 0,
|
|
(Nullable<int> v) => v.HasValue ? (Nullable<int>)(int)v : default(Nullable<int>)),
|
|
providerValueComparer: new ValueComparer<int?>(
|
|
(Nullable<int> v1, Nullable<int> v2) => v1.HasValue && v2.HasValue && (int)v1 == (int)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<int> v) => v.HasValue ? (int)v : 0,
|
|
(Nullable<int> v) => v.HasValue ? (Nullable<int>)(int)v : default(Nullable<int>)));
|
|
param1.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var param2 = runtimeEntityType.AddProperty(
|
|
"Param2",
|
|
typeof(string),
|
|
propertyInfo: typeof(PowiadomienieParam).GetProperty("Param2", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(PowiadomienieParam).GetField("<Param2>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
nullable: true,
|
|
maxLength: 255,
|
|
unicode: false);
|
|
param2.TypeMapping = SqlServerStringTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<string>(
|
|
(string v1, string v2) => v1 == v2,
|
|
(string v) => v.GetHashCode(),
|
|
(string v) => v),
|
|
keyComparer: new ValueComparer<string>(
|
|
(string v1, string v2) => v1 == v2,
|
|
(string v) => v.GetHashCode(),
|
|
(string v) => v),
|
|
providerValueComparer: new ValueComparer<string>(
|
|
(string v1, string v2) => v1 == v2,
|
|
(string v) => v.GetHashCode(),
|
|
(string v) => v),
|
|
mappingInfo: new RelationalTypeMappingInfo(
|
|
storeTypeName: "varchar(255)",
|
|
size: 255));
|
|
param2.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var key = runtimeEntityType.AddKey(
|
|
new[] { powiadomienieId, znaczenie, kolejnosc });
|
|
runtimeEntityType.SetPrimaryKey(key);
|
|
key.AddAnnotation("Relational:Name", "PK_POWIADOMIENIEPARAM");
|
|
|
|
return runtimeEntityType;
|
|
}
|
|
|
|
public static RuntimeForeignKey CreateForeignKey1(RuntimeEntityType declaringEntityType, RuntimeEntityType principalEntityType)
|
|
{
|
|
var runtimeForeignKey = declaringEntityType.AddForeignKey(new[] { declaringEntityType.FindProperty("PowiadomienieId") },
|
|
principalEntityType.FindKey(new[] { principalEntityType.FindProperty("PowiadomienieId") }),
|
|
principalEntityType,
|
|
required: true);
|
|
|
|
var powiadomienie = declaringEntityType.AddNavigation("Powiadomienie",
|
|
runtimeForeignKey,
|
|
onDependent: true,
|
|
typeof(Powiadomienie),
|
|
propertyInfo: typeof(PowiadomienieParam).GetProperty("Powiadomienie", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(PowiadomienieParam).GetField("<Powiadomienie>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly));
|
|
|
|
var powiadomienieParam = principalEntityType.AddNavigation("PowiadomienieParam",
|
|
runtimeForeignKey,
|
|
onDependent: false,
|
|
typeof(ICollection<PowiadomienieParam>),
|
|
propertyInfo: typeof(Powiadomienie).GetProperty("PowiadomienieParam", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(Powiadomienie).GetField("<PowiadomienieParam>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly));
|
|
|
|
runtimeForeignKey.AddAnnotation("Relational:Name", "Ref_PowiadomienieParamPowiadomienie");
|
|
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", "PowiadomienieParam");
|
|
runtimeEntityType.AddAnnotation("Relational:ViewName", null);
|
|
runtimeEntityType.AddAnnotation("Relational:ViewSchema", null);
|
|
|
|
Customize(runtimeEntityType);
|
|
}
|
|
|
|
static partial void Customize(RuntimeEntityType runtimeEntityType);
|
|
}
|
|
}
|