使用NHibernate比较字节数组

时间:2011-06-14 14:34:43

标签: c# linq nhibernate linq-to-nhibernate

以下Linq to NHibernate查询会生成System.NotSupportedException

IEnumerable<File> FindByMd5(byte[] md5)
{
    return this.Session.Query<File>().Where(f => f.Md5.SequenceEqual(md5)).ToList();
}

我应该如何使用Linq到NHibernate或QueryOver<File>()

3 个答案:

答案 0 :(得分:1)

由于错误已经表明NHibernate不支持该功能。我将创建一个命名查询并在查询中求解方程。我用MySQL测试了它(使用常见的用户名和密码比较作为示例),以下语句返回所需的行(密码是BINARY(32)字段):

SELECT * FROM `user` WHERE `password` = MD5('test');

使用MSSQL可以:

SELECT * FROM [user] WHERE [password] = HASHBYTES('MD5', 'test')

因此,要将其扩展为命名查询,您将创建一个类似于“User.hbm.xml”的.hbm.xml文件,其中包含以下内容:

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="My.Model" namespace="My.Model">
  <sql-query name="GetUserByCredentials">
    <return class="My.Model.User, My.Model" />
    <![CDATA[
      SELECT * FROM User WHERE Username = :Username AND Password = MD5(:Password)
    ]]>
  </sql-query>
</hibernate-mapping>

为了配置这个,我使用了Fluent NHibernate,但只有简单的NHibernate才能实现类似的东西:

Fluently.Configure()
    .Database(MySqlConfiguration.Standard
        .ConnectionString(x => x.FromConnectionStringWithKey("Test"))
        .AdoNetBatchSize(50))
    .Cache(c => c
        .UseQueryCache()
        .ProviderClass<HashtableCacheProvider>())
    .Mappings(m =>
    {
        m.FluentMappings.AddFromAssemblyOf<IHaveFluentNHibernateMappings>().Conventions.Add(ForeignKey.EndsWith("Id"));
        m.HbmMappings.AddFromAssemblyOf<IHaveFluentNHibernateMappings>();
    })
    .BuildConfiguration();

此语句在程序集中查找名为“IHaveFluentNHibernateMappings”的接口的“.hbm.xml”文件

有了这个,您可以在会话级别执行以下操作:

public User GetUserByCredentials(string username, string password)
{
    IQuery query = Session.GetNamedQuery("GetUserByCredentials");
    query.SetParameter("Username", username);
    query.SetParameter("Password", password);

    return query.UniqueResult<User>();
}

通过调用GetUserByCredentials方法,将执行自定义查询。

正如您所看到的,password是一个字符串,因此您需要首先使用以下命令将MD5字节数组转换为字符串:

System.Text.StringBuilder s = new System.Text.StringBuilder();
foreach (byte b in md5ByteArray)
{
   s.Append(b.ToString("x2").ToLower());
}
password = s.ToString();
祝你好运!

答案 1 :(得分:0)

我通过将MD5存储为字符串来解决问题。

public class PersistedFile
{
    public virtual int Id { get; set; }
    public virtual string Path { get; set; }
    public virtual string Md5 { get; set; }
}

使用此方法保存文件:

public PersistedFile Save(string filePath)
{
    using (var fileStream = new FileStream(filePath, FileMode.Open))
    {
        var bytes = MD5.Create().ComputeHash(fileStream);

        using (var transaction = this.Session.BeginTransaction())
        {
            var newFile = new PersistedFile
            {
                Md5 = BitConverter.ToString(bytes),
                Path = filePath,
            };
            this.Session.Save(newFile);
            transaction.Commit();
            return newFile;
        }
    }
}

使用以下文件检索文件:

public IEnumerable<PersistedFile> FindByMd5(string md5)
{
    using (var transaction = this.Session.BeginTransaction())
    {
        var files = this.Session.Query<PersistedFile>().Where(f => f.Md5 == md5).ToList();
        transaction.Commit();
        return files;
    }
}

答案 2 :(得分:0)

旧Q但是,仍然与Linq有关。因此,使用NHibernate和SQLite,在与字节数组值进行比较时,您可以使用查询来限制或标准。

session.QueryOver<TestItem>().WhereRestrictionOn(i => i.Foo).IsBetween(aaa).And(aaa);

session.CreateCriteria<TestItem>().Add(Restrictions.Eq("Foo", aaa))