mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-03 20:08:21 +00:00
17 lines
368 B
C#
17 lines
368 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Stores.EntityCore;
|
|
|
|
struct EntityTypeInfo
|
|
{
|
|
public string Name;
|
|
public IEntityType Type;
|
|
public PropertyInfo PrimaryKey;
|
|
// public Func<DbContext> Getter;
|
|
}
|