实体框架与SQL 精简版 - 如何获取 ntext?
我的问题的答案应该是很明显的,但我找不到它。我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我猜你首先使用模型,不是吗?您可以简单地为 SQL DDL 生成创建自定义 T4 模板,并包含在使用最大大小定义字段时将使用
NTEXT
的逻辑。默认模板已启用:
只需复制此模板并找到创建数据类型的逻辑即可。获得模板后,将模型属性(在设计器中)中的 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:
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.
只需将设计器中的属性“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.
如果您的项目包含 ADO.Net 实体数据模型 (
.edmx
),请参阅 Ladislav 的出色答案。但是,如果您使用的是 Code First 库,并且您的项目不包含
.edmx
,那么您可以使用System.ComponentModel.DataAnnotations.ColumnAttribute
指定列类型: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 theSystem.ComponentModel.DataAnnotations.ColumnAttribute
to specify the column type: