• 大小: 4.33KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: EF  sql  Server  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Data.Entity;
using System.Data.Entity.Core.objects;
using System.Data.Entity.Infrastructure;
using System.Reflection;
using System.Text.Regularexpressions;

namespace Models
{
    public static class ContextExtensions
    {
        public static string GetTableName(this DbContext context Type tableType)
        {
            MethodInfo method = typeof(ContextExtensions).GetMethod(“GetTableName“ new Type[] { typeof(DbContext) })
                .MakeGenericMethod(new Type[] { tableType });

            return (string)method.Invoke(context new object[] { context });
        }

        public static string GetTableName(this DbContext context) where T : class
        {
            objectContext objectContext = ((IobjectContextAdapter)contex

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        5799  2015-09-10 16:40  DBDescriptionUpdater.cs
     文件         468  2015-09-10 15:39  Student.cs
     文件        1865  2015-09-07 15:10  TypeExtensions.cs
     目录           0  2015-09-08 13:42  Migrations\
     文件        1150  2015-09-08 13:32  Migrations\Configuration.cs
     文件        1275  2015-09-07 15:18  ContextExtensions.cs
     文件         495  2015-09-07 14:41  DBDescriptionAttribute.cs

评论

共有 条评论