ef core schema 指定架构
Posted easyauthor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ef core schema 指定架构相关的知识,希望对你有一定的参考价值。
不知道很少使用Schema模型还是怎么,居然搜帖子没人说,虽然很简单但是还是想记录一下坑
命名空间
using System.ComponentModel.DataAnnotations.Schema;
数据注释
[Table("blogs", Schema = "blogging")] public class Blog public int BlogId get; set; public string Url get; set;
因为我们项目表结构通过架构来区分的,一直都没找到ef里面怎么设置,看了很多资料但是忽略了table就有这个参数 可能table有参构造并没有这属性造成的吧
地址:https://docs.microsoft.com/zh-cn/ef/core/modeling/relational/tables
默认架构设置:https://docs.microsoft.com/zh-cn/ef/core/modeling/relational/default-schema
记录下坑希望有人踩到直接就找到了
以上是关于ef core schema 指定架构的主要内容,如果未能解决你的问题,请参考以下文章