实体框架与SQL 精简版 - 如何获取 ntext?

发布于 2024-11-09 22:02:28 字数 312 浏览 0 评论 0原文

我的问题的答案应该是很明显的,但我找不到它。我有一个 edmx 文件,其中有一个表。有一个字符串类型的字段。 EF 总是为此生成 nvarchar(这是预期的),但是我需要一个 ntext 而不是该字段的 nvarchar,因为 4000 也太对我来说很小。

那么请告诉我 - 告诉 EF 生成 ntext 字段的正确方法是什么?

PS 使用 Entity Framework 4、SQL CE 3.5

The answer to my question should be quite obvious, but I cannot find it. I have a edmx file that has one table. There is a field of type string. EF always generates nvarchar for that (which is kind of expected), but I need an ntext instead of nvarchar for that field as 4000 is too small for me.

So tell me - what is the proper way to tell EF to generate ntext fields?

PS Using Entity Framework 4, SQL CE 3.5

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

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

发布评论

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

评论(3

一个人的旅程 2024-11-16 22:02:28

我猜你首先使用模型,不是吗?您可以简单地为 SQL DDL 生成创建自定义 T4 模板,并包含在使用最大大小定义字段时将使用 NTEXT 的逻辑。

默认模板已启用:

C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Microsoft\Entity Framework Tools\DBGen\SSDLToSQL10.tt

只需复制此模板并找到创建数据类型的逻辑即可。获得模板后,将模型属性(在设计器中)中的 DDL 生成模板更改为修改后的版本。

使用生成模板可以做更多事情,因为您可以向模型 (XML) 添加一些注释,并将它们用于 SQL 生成过程中的自定义逻辑。

I guess you are using model first, don't you? You can simply create custom T4 template for SQL DDL generation and include logic which will use NTEXT when field is defined with max size.

Default template is on:

C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Microsoft\Entity Framework Tools\DBGen\SSDLToSQL10.tt

Just copy this template and find the logic where data type is created. Once you have your template change DDL Generation Template in model properties (in the designer) to your modified version.

There is much more you can do with generation template because you can add some annotations to your model (XML) and use them for custom logic in the SQL generation process.

旧时模样 2024-11-16 22:02:28

只需将设计器中的属性“MaxLength”设置为“Max”即可。这将在 SQL CE DB 中生成一个 ntext 字段。

Just set the property "MaxLength" in the Designer to "Max". This will generate a ntext field in the SQL CE DB.

你又不是我 2024-11-16 22:02:28

如果您的项目包含 ADO.Net 实体数据模型 (.edmx),请参阅 Ladislav 的出色答案

但是,如果您使用的是 Code First 库,并且您的项目不包含 .edmx,那么您可以使用 System.ComponentModel.DataAnnotations.ColumnAttribute 指定列类型:

using System.ComponentModel.DataAnnotations;

public class Note {

    [Column("Note", TypeName="ntext")]
    public string Note { get; set; }

}

If your project contains an ADO.Net Entity Data Model (.edmx) then see Ladislav's excellent answer.

But if you're using the Code First libraries and your project doesn't contain a .edmx then you can use the System.ComponentModel.DataAnnotations.ColumnAttribute to specify the column type:

using System.ComponentModel.DataAnnotations;

public class Note {

    [Column("Note", TypeName="ntext")]
    public string Note { get; set; }

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