143 lines
7.8 KiB
C#
143 lines
7.8 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using DuSoft.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 DuSoft.PcmDb.CompiledEntities
|
|
{
|
|
internal partial class UprawnienieEntityType
|
|
{
|
|
public static RuntimeEntityType Create(RuntimeModel model, RuntimeEntityType baseEntityType = null)
|
|
{
|
|
var runtimeEntityType = model.AddEntityType(
|
|
"DuSoft.PcmDb.Entities.Uprawnienie",
|
|
typeof(Uprawnienie),
|
|
baseEntityType);
|
|
|
|
var uzId = runtimeEntityType.AddProperty(
|
|
"UzId",
|
|
typeof(decimal),
|
|
propertyInfo: typeof(Uprawnienie).GetProperty("UzId", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(Uprawnienie).GetField("<UzId>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
afterSaveBehavior: PropertySaveBehavior.Throw,
|
|
sentinel: 0m);
|
|
uzId.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));
|
|
uzId.AddAnnotation("Relational:ColumnType", "numeric(9, 0)");
|
|
uzId.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var rodzaj = runtimeEntityType.AddProperty(
|
|
"Rodzaj",
|
|
typeof(short),
|
|
propertyInfo: typeof(Uprawnienie).GetProperty("Rodzaj", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(Uprawnienie).GetField("<Rodzaj>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
afterSaveBehavior: PropertySaveBehavior.Throw,
|
|
sentinel: (short)0);
|
|
rodzaj.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));
|
|
rodzaj.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var jest = runtimeEntityType.AddProperty(
|
|
"Jest",
|
|
typeof(short?),
|
|
propertyInfo: typeof(Uprawnienie).GetProperty("Jest", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(Uprawnienie).GetField("<Jest>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
nullable: true);
|
|
jest.TypeMapping = SqlServerShortTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<short?>(
|
|
(Nullable<short> v1, Nullable<short> v2) => v1.HasValue && v2.HasValue && (short)v1 == (short)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<short> v) => v.HasValue ? (int)(short)v : 0,
|
|
(Nullable<short> v) => v.HasValue ? (Nullable<short>)(short)v : default(Nullable<short>)),
|
|
keyComparer: new ValueComparer<short?>(
|
|
(Nullable<short> v1, Nullable<short> v2) => v1.HasValue && v2.HasValue && (short)v1 == (short)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<short> v) => v.HasValue ? (int)(short)v : 0,
|
|
(Nullable<short> v) => v.HasValue ? (Nullable<short>)(short)v : default(Nullable<short>)),
|
|
providerValueComparer: new ValueComparer<short?>(
|
|
(Nullable<short> v1, Nullable<short> v2) => v1.HasValue && v2.HasValue && (short)v1 == (short)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<short> v) => v.HasValue ? (int)(short)v : 0,
|
|
(Nullable<short> v) => v.HasValue ? (Nullable<short>)(short)v : default(Nullable<short>)));
|
|
jest.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var key = runtimeEntityType.AddKey(
|
|
new[] { uzId, rodzaj });
|
|
runtimeEntityType.SetPrimaryKey(key);
|
|
key.AddAnnotation("Relational:Name", "PK_UPRAWNIENIE");
|
|
|
|
return runtimeEntityType;
|
|
}
|
|
|
|
public static RuntimeForeignKey CreateForeignKey1(RuntimeEntityType declaringEntityType, RuntimeEntityType principalEntityType)
|
|
{
|
|
var runtimeForeignKey = declaringEntityType.AddForeignKey(new[] { declaringEntityType.FindProperty("UzId") },
|
|
principalEntityType.FindKey(new[] { principalEntityType.FindProperty("UzId") }),
|
|
principalEntityType,
|
|
required: true);
|
|
|
|
var uz = declaringEntityType.AddNavigation("Uz",
|
|
runtimeForeignKey,
|
|
onDependent: true,
|
|
typeof(Uzytkownik),
|
|
propertyInfo: typeof(Uprawnienie).GetProperty("Uz", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(Uprawnienie).GetField("<Uz>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly));
|
|
|
|
var uprawnienie = principalEntityType.AddNavigation("Uprawnienie",
|
|
runtimeForeignKey,
|
|
onDependent: false,
|
|
typeof(ICollection<Uprawnienie>),
|
|
propertyInfo: typeof(Uzytkownik).GetProperty("Uprawnienie", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(Uzytkownik).GetField("<Uprawnienie>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly));
|
|
|
|
runtimeForeignKey.AddAnnotation("Relational:Name", "FK_UPRAWNIE_REF_UZUPR_UZYTKOWN");
|
|
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", "Uprawnienie");
|
|
runtimeEntityType.AddAnnotation("Relational:ViewName", null);
|
|
runtimeEntityType.AddAnnotation("Relational:ViewSchema", null);
|
|
|
|
Customize(runtimeEntityType);
|
|
}
|
|
|
|
static partial void Customize(RuntimeEntityType runtimeEntityType);
|
|
}
|
|
}
|