2010-05-17 4 views
0

У меня есть код, чтобы попытаться просмотреть результаты LINQ, но он, похоже, не работает.Как выполнить Loop через результаты LINQ (VB.NET)

Вот код

Public Sub ProcessRequest(ByVal context As System.Web.HttpContext) Implements System.Web.IHttpHandler.ProcessRequest 
     ''# the page contenttype is plain text' 
     HttpContext.Current.Response.ContentType = "text/plain" 

     ''# store the querystring as a variable' 
     Dim qs As Nullable(Of Integer) = Integer.TryParse(HttpContext.Current.Request.QueryString("ID"), Nothing) 

     ''# use the RegionsDataContext' 
     Using RegionDC As New DAL.RegionsDataContext 

      ''# create a (q)uery variable' 
      Dim q As Object 

      ''# if the querystring PID is not blank' 
      ''# then we want to return results based on the PID' 
      If Not qs Is Nothing Then 
       ''# that fit within the Parent ID' 
       q = (From r In RegionDC.bt_Regions _ 
         Where r.PID = qs _ 
         Select r.Region).ToArray 

       ''# now we loop through the array' 
       ''# and write out the ressults' 
       For Each item As DAL.bt_Region In q 
        HttpContext.Current.Response.Write(item.Region & vbCrLf) 
       Next 

      End If 



     End Using 
    End Sub 

ВОТ ОШИБКА

Public member 'Region' on type 'String' not found. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.MissingMemberException: Public member 'Region' on type 'String' not found.

Source Error:

Line 33: ' and write out the ressults Line 34:
For Each item In q Line 35:
HttpContext.Current.Response.Write(item.Region & vbCrLf) Line 36:
Next Line 37:

Source File: E:\Projects\businesstrader\App_Code\Handlers\RegionsAutoComplete.vb Line: 35

Stack Trace:

[MissingMemberException: Public member 'Region' on type 'String' not found.] Microsoft.VisualBasic.CompilerServices.Container.GetMembers(String& MemberName, Boolean ReportErrors) +509081 Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateGet(Object Instance, Type Type, String MemberName, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack) +222 BT.Handlers.RegionsAutoComplete.ProcessRequest(HttpContext context) in E:\Projects\businesstrader\App_Code\Handlers\RegionsAutoComplete.vb:35 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75

Может кто-нибудь сказать мне, что я делаю неправильно?

ответ

2

В сообщении об ошибке говорится, что объекты, хранящиеся в свойстве bt_Regions, имеют тип String и поэтому у них нет члена Region, к которому вы пытаетесь получить доступ.

Я бы дважды проверял, что такое тип DAL.bt_Regions. Похоже, вы предполагаете, что он возвращает некоторый класс, но, похоже, он возвращает коллекцию строк (возможно, только имена регионов?). Для того, чтобы увидеть, что он содержит, вы можете изменить код следующим образом:

HttpContext.Current.Response.Write(item & vbCrLf) // to print the string 

Я также хотел бы попробовать добавить Option Strict On вариант (если это возможно), который будет инструктировать компилятор для проверки такого рода ошибок во время компиляции.

+0

ах да. используя «item», поскольку я только выбираю одну запись (которая является строкой) из базы данных. –

Смежные вопросы