My database contains a column of type string, that represents a URL. I'm now wondering how its possible to map this string to a Uri object using the Entity Framework.
我的数据库包含一个string类型的列,表示一个URL。我现在想知道如何使用Entity Framework将此字符串映射到Uri对象。
Any ideas?
1 个解决方案
#1
2
Use a partial class, w/ a custom property:
使用具有自定义属性的分部类:
public partial class MyClass
{
public Uri MyUri
{
get
{ return new Uri(StringUriPropertyFromDB); }
}
}
You can make the string property private in the EF designer, if you want. Note you can't use custom properties like this in LINQ to entities, though.
如果需要,可以在EF设计器中将字符串属性设为私有。请注意,不能在LINQ实体中使用这样的自定义属性。
#1
2
Use a partial class, w/ a custom property:
使用具有自定义属性的分部类:
public partial class MyClass
{
public Uri MyUri
{
get
{ return new Uri(StringUriPropertyFromDB); }
}
}
You can make the string property private in the EF designer, if you want. Note you can't use custom properties like this in LINQ to entities, though.
如果需要,可以在EF设计器中将字符串属性设为私有。请注意,不能在LINQ实体中使用这样的自定义属性。