Scaffold-DbContext SQL 数据库视图? ASP.NET核心6

发布于 2025-01-16 15:13:10 字数 135 浏览 0 评论 0原文

我是 .Net Core 的新手,我想知道脚手架 EF 支持 sql 视图,就像它支持 .Net Core 6 中的 sql 表一样吗? 如果支持哪个命令可以呢?对于表,Scaffold-DbContext 是相同的命令吗?

预先非常感谢您!

I am new to .Net Core and I'd like to know scaffold EF support sql view like it supports sql table in .Net Core 6?
If it supports which command will do? For tables,Scaffold-DbContext and is it same command?

Thank you very much in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泅人 2025-01-23 15:13:10

Scaffold-DbContext 可以搭建表和视图,以下是示例:-

Scaffold-DbContext“服务器=10.10.10.123;数据库=Testdb;用户id=sa;
密码=Sa1234" Microsoft.EntityFrameworkCore.SqlServer -OutputDir
模型 -Context TestDBContext -表 v_employee

Scaffold-DbContext can scaffold both tables and views, Here is the Example:-

Scaffold-DbContext "Server=10.10.10.123;Database=Testdb; user id=sa;
password=Sa1234" Microsoft.EntityFrameworkCore.SqlServer -OutputDir
Models -Context TestDBContext -Tables v_employee

假装爱人 2025-01-23 15:13:10

Scaffold-DbContext 将构建表和视图

Scaffold-DbContext will scaffold both tables and views

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文