使用 Linq 进行 C# 通用转换

发布于 2024-10-21 21:59:58 字数 825 浏览 3 评论 0原文

我有一个与 linq 类交互并使用 System.Data.Linq.Binary 数据类型的类。我正在尝试编写一个简单的类,该类采用通用排列来表示存储为二进制的数据类型:

// .Value is a System.Data.Linq.Binary DataType
public class DataType<T> where T : class
{
     public T Value
     {
        get
        {
            return from d in Database
                   where d.Value = [Some Argument Passed]
                   select d.Value as T;
        }
     }
}

public class StringClass : DataType<string>
{
}

public class ByteClass : DataType<byte[]>
{
}

StringClass.Value 会正确地从数据库中转换并返回string 吗?

ByteClass.Value 能否正确转换并从数据库返回 byte[]

我的主要问题基本上解决了如何使用 System.Data.Linq.Binary 。

编辑:如何将 System.Data.Linq.Binary 转换为 T,其中 T 可以是任何值。我的代码实际上不起作用,因为我无法使用 as 将 Binary 转换为 T。

I have a class that interfaces with a linq class and uses the System.Data.Linq.Binary datatype. I'm trying to write a simple class that takes a generic arrangement that denotes the datatype stored as binary:

// .Value is a System.Data.Linq.Binary DataType
public class DataType<T> where T : class
{
     public T Value
     {
        get
        {
            return from d in Database
                   where d.Value = [Some Argument Passed]
                   select d.Value as T;
        }
     }
}

public class StringClass : DataType<string>
{
}

public class ByteClass : DataType<byte[]>
{
}

Will StringClass.Value correctly cast and return a string from the database?

Will ByteClass.Value correctly cast and return a byte[] from the database?

My main question basically resolves around how System.Data.Linq.Binary can be used.

Edit: How do I convert System.Data.Linq.Binary to T where T can be anything. My code doesn't actually work because I can't cast Binary to T using as.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

亽野灬性zι浪 2024-10-28 21:59:58

本质上你正在做的事情

System.Data.Linq.Binary b1;

string str = b as string;

System.Data.Linq.Binary b2

byte[] bArray = b2 as byte[];

str 和 bArray 都将为 null;

你会需要类似的东西

public class DataType<T> where T : class
{
    public T Value
    {
        get
        {
           // call ConvertFromBytes with linqBinary.ToArray()
           // not sure about the following; you might have to tweak it.
            return ConvertFromBytes((from d in Database
                   where d.Value = [Some Argument Passed]
                   select d.Value).
            First().ToArray());
        }
    }

    protected virtual T ConvertFromBytes(byte[] getBytes)
    {
        throw new NotImplementedException();
    }
}

public class StringClass : DataType<string>
{
    protected override string ConvertFromBytes(byte[] getBytes)
    {
        return Encoding.UTF8.GetString(getBytes);
    }    
}

public class ByteClass : DataType<byte[]>
{
    protected override byte[] ConvertFromBytes(byte[] getBytes)
    {
        return getBytes;
    }
}

essentially you are doing

System.Data.Linq.Binary b1;

string str = b as string;

and

System.Data.Linq.Binary b2

byte[] bArray = b2 as byte[];

both str and bArray will be null;

you will need something like

public class DataType<T> where T : class
{
    public T Value
    {
        get
        {
           // call ConvertFromBytes with linqBinary.ToArray()
           // not sure about the following; you might have to tweak it.
            return ConvertFromBytes((from d in Database
                   where d.Value = [Some Argument Passed]
                   select d.Value).
            First().ToArray());
        }
    }

    protected virtual T ConvertFromBytes(byte[] getBytes)
    {
        throw new NotImplementedException();
    }
}

public class StringClass : DataType<string>
{
    protected override string ConvertFromBytes(byte[] getBytes)
    {
        return Encoding.UTF8.GetString(getBytes);
    }    
}

public class ByteClass : DataType<byte[]>
{
    protected override byte[] ConvertFromBytes(byte[] getBytes)
    {
        return getBytes;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文