任何人都可以解释 CodeSmith SchemaExplorer.ViewSchema 构造函数中的参数吗?

发布于 2024-07-27 23:11:17 字数 310 浏览 5 评论 0原文

来自 CodeSmith API 帮助 [C#] 公共视图架构( 数据库架构数据库架构, 字符串 字符串, 字符串 字符串, 日期时间日期时间, 扩展属性[] 扩展属性[] );

参数 数据库 姓名 所有者 创建日期 ExtendedProperties

我可以看到前 3 个参数的含义。

但是最后两个参数 dateCreated 和extendProperties 的目的是什么?

有没有使用这个构造函数的示例可以参考?

From CodeSmith API help
[C#]
public ViewSchema(
DatabaseSchema DatabaseSchema,
string String,
string String,
DateTime DateTime,
ExtendedProperty[] ExtendedProperty[]
);

Parameters
database
name
owner
dateCreated
extendedProperties

I can see what the first 3 parameters mean.

But what is the purpose of last 2 parameters dateCreated and extendProperties?

Is there any sample of using this constructor I can refer to?

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

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

发布评论

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

评论(1

↙厌世 2024-08-03 23:11:25

您在 DatabaseSchema 中传递的第一个参数。

您传入视图名称的第二个参数。

第三个参数是视图的所有者(EG dbo)。

第四个属性是DateTime,它代表视图创建的时间或者你创建视图的时间,你可以传入DateTime.Now。

第五个属性是视图的 ExtendedProperty 集合,它存储您想要在模板中访问的任何额外元数据。

谢谢

-布莱克·尼米斯基

The first parameter you pass in the DatabaseSchema.

The second parameter you pass in the name of the view.

The third parameter is the owner of the view (E.G dbo).

The fourth property is a DateTime which represents when the view was created or when you created it, you can pass in DateTime.Now.

The fifth property is the ExtendedProperty Collection for the view, this stores any extra metadata that you want to access in your templates.

Thanks

-Blake Niemyjski

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