C#:将数据添加到 SQLMetal 生成的数据库类?

发布于 2024-08-03 19:27:53 字数 86 浏览 4 评论 0原文

我使用 SQLMetal 生成代表我的数据库的代码文件,但我不知道如何从 SQLMetal 生成的类向数据库添加条目。我该怎么做?我只是添加各种属性还是什么?

I used SQLMetal to generate a code file representing my database, and i can't figure out how to add entries to the database from the SQLMetal generated classes. How do i do this? do i just add to the various properties or something?

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

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

发布评论

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

评论(2

请你别敷衍 2024-08-10 19:27:53

这是 linq-to-sql 的一个很好的概述,其中包括如何通过自动生成的类(来自 SQL Metal)添加到数据库。 链接

本质上:

  1. 创建数据库上下文对象
  2. 创建一个新对象(这是自动生成的)
  3. 填充对象的属性
  4. 将对象添加到数据库上下文中的正确集合
  5. 中将更改提交到数据库上下文。瞧!

Here's a good overview of linq-to-sql, which includes how to add to your database via the auto-generated classes (from SQL Metal). Link

Essentially:

  1. Create your database context object
  2. Create a new object (which was auto-generated)
  3. Populate your object's properties
  4. Add your object to the correct collection within your database context
  5. Submit changes to your database context. Voila!
忆离笙 2024-08-10 19:27:53

生成的类是部分类,因此您可以使用另一个部分类定义将它们扩展到程序集中的其他任何位置(注意:我不是指扩展方法,只是另一个部分类声明)。

这样,您还可以重新生成这些类,而不必担心覆盖这些类的其他扩展。

The generated classes are partial classes, so you can extend them anywhere else in your assembly with another partial class definition (note: I don't mean extension methods, just another partial class declaration).

That way, you can also re-generate those classes without worrying of overwriting your other extensions of the classes.

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