如何使Type变量与Linq to SQL一起使用?

时间:2012-08-14 12:03:01

标签: c# linq-to-sql

我正在尝试制作各种通用函数,在我的代码的某个地方我有这些行

myDataContext dc = new myDataContext();
.
.
.(some code later)
.
Sucursal sucursal = dc.Sucursal.SingleOrDefault(s => s.Id == id);

非常有效。现在,当我尝试制作“通用”表格时会出现问题

public static void FindWithId<DataBaseTable>(Table<DataBaseTable> table, int id)
    where DataBaseTable : class
{                    
   DataBaseTable t = table.SingleOrDefault(s => s.GetType().GetMember("Id").ToString() == id.ToString());
}
执行此行时

FindWithId<Sucursal>(dc.Sucursal,01);

我收到以下错误

  Elmétodo'System.Reflection.MemberInfo[] GetMember(System.String)'不要轻易转换为SQL。

大致翻译为:

  

方法'System.Reflection.MemberInfo [] GetMember(System.String)'不支持转换为SQL。

我该怎么做才能使这项工作?

谢谢!

更新解决方案

我一直在努力寻找解决方案,直到我发现这个问题thread,它给出了一个非常彻底的答案,但出于我的目的,我将其改编为:

  public class DBAccess
{
    public virtual DataBaseTable GetById<DataBaseTable>(int id, Table<DataBaseTable> table) where DataBaseTable : class
    {
        var itemParameter = Expression.Parameter(typeof(DataBaseTable), "item");
        var whereExpression = Expression.Lambda<Func<DataBaseTable, bool>>
            (
            Expression.Equal(
                Expression.Property(
                    itemParameter,
                    "Id"
                    ),
                Expression.Constant(id)
                ),
            new[] { itemParameter }
            );
        return table.Where(whereExpression).Single();
    }
}

希望它对某人有用:P

2 个答案:

答案 0 :(得分:2)

如果您只想要获取Id属性的通用方法,则可以更改

where DataBaseTable : class

像是

where DataBaseTable : IEntity

其中IEntity是一个具有Id属性的接口,您的所有实体都可以在其上实现。

你得到错误的原因是因为它试图将反射方法转换为SQL,这在SQL中没有任何意义,因为表上没有“方法”。

答案 1 :(得分:0)

你不能这样,因为你基本上是在尝试在SQL中使用反射方法:作为SingleOrDefault()的参数传递的内容将被转换为SQL。

旁注:s.GetType().GetMember("Id")返回MemberInfo类型的值,MemberInfo.ToString()不是您要查找的内容。