如何取得和EF core mapped entity的表名

Posted grady1028

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何取得和EF core mapped entity的表名相关的知识,希望对你有一定的参考价值。

Use package:Microsoft.EntityFrameworkCore.Relational

 

var mapping=dbContext.Model.FindEntityType(typeof(YourEntity)).Relational();

var schema=mapping.Schema;

var tableName=mapping.TableName;

以上是关于如何取得和EF core mapped entity的表名的主要内容,如果未能解决你的问题,请参考以下文章

.NET Core EF 脚手架引发无法找到提供程序程序集“Source=localhost”

Ef core many 2 many mapping

EF Core - 为啥“无限”嵌套急切加载?

NopCommerce用core重写ef

ASP.Net Core 如何在 EF Core 和 Identity 中获取用户角色

在快速自定义的NopCommerce中使用实体框架(EF)代码优先迁移