将 URI 映射到 LINQ-to-SQL 中的字符串字段

发布于 2024-08-08 12:01:41 字数 664 浏览 3 评论 0原文

我正在尝试使用 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 技术交流群。

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

发布评论

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

评论(1

椒妓 2024-08-15 12:01:41

一如既往,写下问题帮助我认识到了问题。以下代码解决了我的问题:

public Uri Url
{
    get
    {
        return new Uri(_url);
    }
    set
    {
        _url = value.AbsoluteUri;
    }
}

[Column(Name = "Url", DbType = "nvarchar(255)")]
private string _url;

As always, writing down the question helped me realize the problem. The following code fixed my problem:

public Uri Url
{
    get
    {
        return new Uri(_url);
    }
    set
    {
        _url = value.AbsoluteUri;
    }
}

[Column(Name = "Url", DbType = "nvarchar(255)")]
private string _url;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文