| View previous topic :: View next topic |
| Author |
Message |
f_lotus
Joined: 13 Nov 2006 Posts: 3
|
Posted: Mon Jan 01, 2007 6:26 am Post subject: 'StringClob' can't be create by 'text' in sqlserver 2005? |
|
|
The entity:
| Code: |
private string content;
[Property(ColumnType = "StringClob")]
public string Contents
{
get { return content; }
set { content = value; }
}
|
When execute
" Castle.ActiveRecord.ActiveRecordStarter.CreateSchema();"
the table will be created
But the the field "Contents" is still nvarchar (255)
why?
dialect :sqlserver 2005 |
|
| Back to top |
|
 |
hammett Castle Team

Joined: 15 Apr 2006 Posts: 1739 Location: SP, Brasil
|
|
| Back to top |
|
 |
f_lotus
Joined: 13 Nov 2006 Posts: 3
|
Posted: Thu Jan 04, 2007 4:45 am Post subject: |
|
|
| Thank you very much! |
|
| Back to top |
|
 |
|