如何取得和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”