Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There must be a simple way to do this but can I can not find any resources anywhere.
The query works perfectly but "record" is a generic object and I would like to be able to retreive strongly typed info like any other standard linq query:

                    var ChatQue = Linq.ChatCues.Where(LinqWhereStatement)
                    .OrderBy("StartTime descending")
                    .Select("new (ChatSubject, UserName, StartTime, ID)");
                foreach (var Record in ChatQue)
                {
                    string DoesNotWork = Record.ChatSubject;
                }

This would be a standard query that works (non dynamic linq of course):

var Select = from R in Linq.ChatCues
                             //where R.ChatStatus == "OpenAwaiting"
                             orderby R.StartTime descending
                             select new { R.ChatSubject, R.UserName, R.StartTime, R.ID };
                foreach (var Record in Select)
                {
                    string works = Record.ChatSubject;}

Dynamic linq is a requirement at this time.

Thank you in advance for your guidance.

After thinking creatively I have found what I am sure is the "wrong" way around things. But it at least can limp through until the "right way" is illustrated:

                    // Dynamic Linq Query
                var ChatQue = Linq.ChatCues.Where(LinqWhereStatement)
                    .OrderBy("StartTime descending")
                    .Select("new (ChatSubject, UserName, StartTime, ID)");
                foreach (var Record in ChatQue)
                {
                    string result = Record.ToString();
                    result = result.Substring(1, result.Length - 2);
                    String[] fields = Regex.Split(result, ", ");
                    NameValueCollection dbValues = new NameValueCollection();
                    foreach (string field in fields)
                    {
                        String[] splitField = field.Split('=');
                        dbValues.Add(splitField[0], splitField[1]);
                    }
                    string ChatSubject = dbValues["ChatSubject"];
                    string UserName = dbValues["UserName"];
                    string StartTime = dbValues["StartTime"];
                    string ID = dbValues["ID"];
                }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.