171 lines
9.3 KiB
C#
171 lines
9.3 KiB
C#
// <auto-generated />
|
|
using System;
|
|
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 LogTypeDefEntityType
|
|
{
|
|
public static RuntimeEntityType Create(RuntimeModel model, RuntimeEntityType baseEntityType = null)
|
|
{
|
|
var runtimeEntityType = model.AddEntityType(
|
|
"DuSoft.PcmDb.Entities.LogTypeDef",
|
|
typeof(LogTypeDef),
|
|
baseEntityType);
|
|
|
|
var typeId = runtimeEntityType.AddProperty(
|
|
"TypeId",
|
|
typeof(decimal),
|
|
propertyInfo: typeof(LogTypeDef).GetProperty("TypeId", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(LogTypeDef).GetField("<TypeId>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
afterSaveBehavior: PropertySaveBehavior.Throw,
|
|
sentinel: 0m);
|
|
typeId.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));
|
|
typeId.AddAnnotation("Relational:ColumnType", "numeric(9, 0)");
|
|
typeId.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var lastUpdate = runtimeEntityType.AddProperty(
|
|
"LastUpdate",
|
|
typeof(DateTime?),
|
|
propertyInfo: typeof(LogTypeDef).GetProperty("LastUpdate", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(LogTypeDef).GetField("<LastUpdate>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
nullable: true);
|
|
lastUpdate.TypeMapping = SqlServerDateTimeTypeMapping.Default.Clone(
|
|
comparer: new ValueComparer<DateTime?>(
|
|
(Nullable<DateTime> v1, Nullable<DateTime> v2) => v1.HasValue && v2.HasValue && (DateTime)v1 == (DateTime)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<DateTime> v) => v.HasValue ? ((DateTime)v).GetHashCode() : 0,
|
|
(Nullable<DateTime> v) => v.HasValue ? (Nullable<DateTime>)(DateTime)v : default(Nullable<DateTime>)),
|
|
keyComparer: new ValueComparer<DateTime?>(
|
|
(Nullable<DateTime> v1, Nullable<DateTime> v2) => v1.HasValue && v2.HasValue && (DateTime)v1 == (DateTime)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<DateTime> v) => v.HasValue ? ((DateTime)v).GetHashCode() : 0,
|
|
(Nullable<DateTime> v) => v.HasValue ? (Nullable<DateTime>)(DateTime)v : default(Nullable<DateTime>)),
|
|
providerValueComparer: new ValueComparer<DateTime?>(
|
|
(Nullable<DateTime> v1, Nullable<DateTime> v2) => v1.HasValue && v2.HasValue && (DateTime)v1 == (DateTime)v2 || !v1.HasValue && !v2.HasValue,
|
|
(Nullable<DateTime> v) => v.HasValue ? ((DateTime)v).GetHashCode() : 0,
|
|
(Nullable<DateTime> v) => v.HasValue ? (Nullable<DateTime>)(DateTime)v : default(Nullable<DateTime>)),
|
|
mappingInfo: new RelationalTypeMappingInfo(
|
|
storeTypeName: "datetime",
|
|
dbType: System.Data.DbType.DateTime));
|
|
lastUpdate.AddAnnotation("Relational:ColumnType", "datetime");
|
|
lastUpdate.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var type = runtimeEntityType.AddProperty(
|
|
"Type",
|
|
typeof(int),
|
|
propertyInfo: typeof(LogTypeDef).GetProperty("Type", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(LogTypeDef).GetField("<Type>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
sentinel: 0);
|
|
type.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));
|
|
type.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var typeCategory = runtimeEntityType.AddProperty(
|
|
"TypeCategory",
|
|
typeof(string),
|
|
propertyInfo: typeof(LogTypeDef).GetProperty("TypeCategory", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(LogTypeDef).GetField("<TypeCategory>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
nullable: true,
|
|
maxLength: 50,
|
|
unicode: false);
|
|
typeCategory.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(50)",
|
|
size: 50));
|
|
typeCategory.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var typeValue = runtimeEntityType.AddProperty(
|
|
"TypeValue",
|
|
typeof(string),
|
|
propertyInfo: typeof(LogTypeDef).GetProperty("TypeValue", BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
fieldInfo: typeof(LogTypeDef).GetField("<TypeValue>k__BackingField", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly),
|
|
maxLength: 255,
|
|
unicode: false);
|
|
typeValue.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));
|
|
typeValue.AddAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.None);
|
|
|
|
var key = runtimeEntityType.AddKey(
|
|
new[] { typeId });
|
|
runtimeEntityType.SetPrimaryKey(key);
|
|
key.AddAnnotation("Relational:Name", "PK_LOGTYPEDEF");
|
|
|
|
return runtimeEntityType;
|
|
}
|
|
|
|
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", "LogTypeDef");
|
|
runtimeEntityType.AddAnnotation("Relational:ViewName", null);
|
|
runtimeEntityType.AddAnnotation("Relational:ViewSchema", null);
|
|
|
|
Customize(runtimeEntityType);
|
|
}
|
|
|
|
static partial void Customize(RuntimeEntityType runtimeEntityType);
|
|
}
|
|
}
|