将 URI 映射到 LINQ-to-SQL 中的字符串字段
我正在尝试使用 LINQ 将 URI 作为字符串存储在数据库中。
[Column(Name = "Url", DbType = "nvarchar(255)")]
public Uri Url
{
get
{
return new Uri(_url);
}
set
{
_url = value.AbsoluteUri;
}
}
private string _url;
这很好地映射到我的数据库设计,但是,当尝试使用此代码获取数据时:
int id = 3;
_serie = new DataContext(connString).GetTable<Serie>();
var serie = _serie.FirstOrDefault(s => s.Id == id);
在最后一行,我收到一个异常
System.InvalidCastException: Invalid cast from System.String to System.Uri etc
我需要做什么才能正确处理我的代码中的 URI,但将其存储为 nvarchar( [255] 在我的数据库里?看起来很简单,但我不知道我哪里做错了。
I'm trying to store a URI as a string in a database, using LINQ.
[Column(Name = "Url", DbType = "nvarchar(255)")]
public Uri Url
{
get
{
return new Uri(_url);
}
set
{
_url = value.AbsoluteUri;
}
}
private string _url;
This maps nicely to my database design, however, when trying to fetch data using this code:
int id = 3;
_serie = new DataContext(connString).GetTable<Serie>();
var serie = _serie.FirstOrDefault(s => s.Id == id);
At the last line, I get an exception
System.InvalidCastException: Invalid cast from System.String to System.Uri etc
What do I need to do get correctly handle a URI in my code, but store it is a nvarchar(255) in my database? It seems simple, but I can't figure out where I'm doing it wrong.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一如既往,写下问题帮助我认识到了问题。以下代码解决了我的问题:
As always, writing down the question helped me realize the problem. The following code fixed my problem: