jonpryor / dblinq2007

Automatically exported from code.google.com/p/dblinq2007
0 stars 0 forks source link

Crash during ExpressionDispatcher with nested query #327

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
[Table]
class WpPost
{
 [Column]
 public string PostName{get;set;}
}

public WpPost GetPostByUri(Uri uri)
        {
            if (uri == null)
                throw new ArgumentNullException("uri");

            using (var db = new WordPressDataContext(ConnectionName))
            {
//uri = http://wasntnate.com/some/page-name/argument
                var segments = uri.Segments.Select(s => s.TrimEnd('/')).ToArray();

                var post = (from p in db.WpPosts
                            where (from s in segments
                                   where s == p.PostName
                                   select s).Count() > 1
                            select p).FirstOrDefault();

                return post;
            }
        }

What is the expected output? What do you see instead?
Expression evaluation is able to succeed and query sent to MySql 

What version of the product are you using? On what operating system?
DbLinq 0.20.0.0

Feel free to contact me if need more info:
http://wasntnate.com/2012/02/crashing-dblinq-with-embedded-query/

Please provide any additional information below.

Original issue reported on code.google.com by itsnatet...@gmail.com on 23 Feb 2012 at 5:21

Attachments: