2

我是实体框架的新手,并且正在努力解决我希望是一个基本问题。我的代码在这里:

    Dim accounts As List(Of STUDENT) =
        (From a In SA.STUDENTs
         Where (a.MATRIC_NO.Contains(matric) And a.FIRST_NAME.Contains(firstName) And a.MIDDLE_NAMES.Contains(middleName) And a.SURNAME.Contains(lastName) And a.PREFERRED_NAME.Contains(preferredName))
         Select a).ToList

查询运行良好,直到数据库中的搜索字段之一为 NULL。例如,如果在 seach 界面中输入了一个矩阵数字,但中间名留空,如果中间名在数据库中为 NULL,则查询将不会返回任何记录。如果中间名是数据库中的空格,那么它将返回记录。

任何人都可以提供任何指示吗?

非常感谢!

4

4 回答 4

0

试试这样..

   Dim get_rmf_2 = From rmf In t_rmf _
          Where Not IsDBNull(rmf!NIVP) AndAlso rmf!NIVP = nivp_rap

这是在VB中我认为这很好用

于 2012-11-22T12:53:36.133 回答
0

您可以在查询中添加额外的检查。例如:

public function filterList(IEnumerable list, string name)
{
    var filtered_list = list.Where(x=> x.Name.Contains(name) || string.IsNullorWhitespace(name)).ToList();

    return filtered_list;
}

所以你可以看到,如果name变量为空,所有元素都会返回true,所以所有元素都会返回(没有应用真正的过滤器)。

所以基本上,你可以从

something.Contains(anotherthing)

something.Contains(anotherthing) || string.IsnullOrWhitespace(anotherthing)
于 2012-11-22T12:12:35.867 回答
0

我设法使用不同的方法解决了这个问题。如果没有为特定字段输入值,请将其排除在查询之外。我使用谓词完成了这一点,如下所示:

    'create the base query
    Dim accounts =
        (From a In SA.STUDENTs
         Select a)


    'create predicates for each condition required in the query
    If matric <> "" Then
        accounts = accounts.Where(Function(m) m.MATRIC_NO.Contains(matric))
    End If

    If firstName <> "" Then
        accounts = accounts.Where(Function(f) f.FIRST_NAME.Contains(firstName))
    End If

    If middleName <> "" Then
        accounts = accounts.Where(Function(mn) mn.MIDDLE_NAMES.Contains(middleName))
    End If

    If lastName <> "" Then
        accounts = accounts.Where(Function(l) l.SURNAME.Contains(lastName))
    End If

    If preferredName <> "" Then
        accounts = accounts.Where(Function(p) p.PREFERRED_NAME.Contains(preferredName))
    End If

    'execute the query
    Dim accountlist = accounts.ToList

    'return the results
    Return accountlist

如果有人能看出这有什么问题,或者有任何我不知道的问题,请告诉我!我对 LINQ to Entities 和一般的 LINQ 非常陌生!

于 2012-11-22T14:34:13.917 回答
0
(From a In SA.STUDENTs
         Where isnull(a.MATRIC_NO.Contains(matric) And a.FIRST_NAME.Contains(firstName) And a.MIDDLE_NAMES.Contains(middleName) And a.SURNAME.Contains(lastName) And a.PREFERRED_NAME.Contains(preferredName))
         Select a).ToList

像这样 `:select * from tbl where statusid = isnull(@statusid,statusid)

于 2012-11-22T12:13:32.353 回答