vote up 2 vote down star

I'm playing around with Subsonic 3.0 SimpleRepository and try to get menus and menuitems with one linq query, but the menuitems is allways null

Menu

public class Menu
{
    public Menu()
    {
        MenuId = 0;
        MenuName = "";
        MenuItems = null;
    }
    public int MenuId { get; set; }
    public string MenuName { get; set; }
    public MenuItem MenuItems { get; set; }
}

Menuitem

public class MenuItem
{
    public MenuItem()
    {
        MenuItemId = 0;
        MenuId = 0;
        MenuItemName = "";
    }
    public int MenuItemId { get; set; }
    public int MenuId { get; set; }
    public string MenuItemName { get; set; }
}

Linq query

var menus =  from m in _repo.All<Menu>()
             from mi in _repo.All<MenuItem>()
             where m.MenuItems.MenuItemId == mi.MenuItemId
             select new Menu
             {
                 MenuId = m.MenuId,
                 MenuName = m.MenuName,
                 MenuItems = {
                             MenuItemId = mi.MenuItemId,
                             MenuItemName = mi.MenuItemName
                        }
             };

Can some one tell me what am I doing wrong here ?

flag

3 Answers

vote up 0 vote down

I think I've found the actual answer to this problem. I've been rummaging around in the SubSonic source and found that there are two types of object projection that are used when mapping the datareader to objects: one for anonymous types and groupings and one for everything else:

Here is a snippet: Line 269 - 298 of SubSonic.Linq.Structure.DbQueryProvider

IEnumerable<T> result;
Type type = typeof (T);
//this is so hacky - the issue is that the Projector below uses Expression.Convert, which is a bottleneck
//it's about 10x slower than our ToEnumerable. Our ToEnumerable, however, stumbles on Anon types and groupings
//since it doesn't know how to instantiate them (I tried - not smart enough). So we do some trickery here.
    if (type.Name.Contains("AnonymousType") || type.Name.StartsWith("Grouping`") || type.FullName.StartsWith("System.")) {
    var reader = _provider.ExecuteReader(cmd);
    result = Project(reader, query.Projector);
    } else
    {
        using (var reader = _provider.ExecuteReader(cmd))
        {
            //use our reader stuff
            //thanks to Pascal LaCroix for the help here...
            var resultType = typeof (T);
            if (resultType.IsValueType)
            {
                result = reader.ToEnumerableValueType<T>();
            }
            else
            {
                result = reader.ToEnumerable<T>();
            }
        }
    }
    return result;

Turns out that the SubSonic ToEnumerable tries to match the column names in the datareader to the properties in the object you're trying to project to. The SQL Query from my Linq looks like this:

SELECT [t0].[Id], [t0].[ProductId], [t0].[ReleaseDate], [t0].[ReleasedBy], [t0].[ReleaseNumber], [t0].[RevisionNumber], [t0].[c0]
FROM (
  SELECT [t1].[Id], [t1].[ProductId], [t1].[ReleaseDate], [t1].[ReleasedBy], [t1].[ReleaseNumber], [t1].[RevisionNumber], (
    SELECT COUNT(*)
    FROM [dbo].[Install] AS t2
    WHERE ([t2].[ReleaseId] = [t1].[Id])
    ) AS c0
  FROM [dbo].[Release] AS t1
  ) AS t0
WHERE ([t0].[ProductId] = 2)

Notice the [t0].[c0] is not the same as my property name NumberOfInstalls. So the value of c0 never gets projected into my object.

THE FIX: You can simply take out the if statement and use the 10x slower projection and everything will work.

link|flag
Is it the : "if (type.Name.Contains("AnonymousType")" or is it the : "if (resultType.IsValueType)" that needs to be let out ? – Martin Overgaard Nov 4 at 9:04
The if(type.Name.Contains("AnonymousType") || type.Name.StartsWith("Grouping")... that line. – jeremys7 Nov 4 at 17:38
Did this fix your problem? – jeremys7 Nov 20 at 9:41
vote up 0 vote down

I don't think you're doing anything wrong here. This seems to be a problem with Subsonic 3.0. I have a question on it right now that I haven't gotten an answer to here. I've also recently tried something simpler. But that isn't working either.

var result = from r in Release.All()
             let i = Install.All().Count(x => x.ReleaseId == r.Id)
             where r.ProductId == productId
             select new ReleaseInfo
             {
                 NumberOfInstalls = i,
                 Id = r.Id,
                 ProductId = r.ProductId,
                 ReleaseNumber = r.ReleaseNumber,
                 RevisionNumber = r.RevisionNumber,
                 ReleaseDate = r.ReleaseDate,
                 ReleasedBy = r.ReleasedBy
             };

The Number of Installs Property does not get populated, but if I map to an anonymous type everything works:

var result = from r in Release.All()
             let i = Install.All().Count(x => x.ReleaseId == r.Id)
             where r.ProductId == productId
             select new 
             {
                 NumberOfInstalls = i,
                 Id = r.Id,
                 ProductId = r.ProductId,
                 ReleaseNumber = r.ReleaseNumber,
                 RevisionNumber = r.RevisionNumber,
                 ReleaseDate = r.ReleaseDate,
                 ReleasedBy = r.ReleasedBy
             };

If you change your code to the following it will probably work:

var menus =  from m in _repo.All<Menu>()
             from mi in _repo.All<MenuItem>()
             where m.MenuItems.MenuItemId == mi.MenuItemId
             select new 
             {
                 MenuId = m.MenuId,
                 MenuName = m.MenuName,
                 MenuItems = new {
                             MenuItemId = mi.MenuItemId,
                             MenuItemName = mi.MenuItemName
                        }
             };

This kind of defeats the purpose since you want to map back to your predefined object type. Maybe we can get an answer from Rob on this? :)

link|flag
As i'm using DDD patern where i return a object from a method in my service layer, I simply can't use an anonymous type. The only thing that has worked out yet is iterate through all my manuitems, cache them (only hit database once) and add them to the menu object. – Martin Overgaard Nov 3 at 18:51
vote up 0 vote down

Does the following work?

Menu

public class Menu
{
    public Menu()
    {
       MenuName = "";
       MenuItems = null;
    }
    public int Id { get; set; }
    public string MenuName { get; set; }
    public MenuItem MenuItems { get; set; }
}

Menuitem

public class MenuItem
{
    public MenuItem()
    {
        MenuItemName = "";
    }
   public int MenuItemId { get; set; }
   public int MenuId { get; set; }
   public string MenuItemName { get; set; }
}

Linq query

var menus = from menus in _repo.All<Menu>()
            join menuItems in _repo.All<MenuItem>()
              on menus.Id equals menuItems.MenuId
            select menus;
link|flag
I changed == to equals, m. to menus., mi. to menuItem. but i get an error saying : The type or namespace name 'menus' could not be found (are you missing a using directive or an assembly reference?) And that is in this line select new menus; – Martin Overgaard Nov 2 at 20:29
Sorry, I really didn't think about that properly at all and tried to rush out an answer. I've edited it to something that at least has a chance of working. – Adam Nov 2 at 21:14
Now it does not come with any error, but the MenuItems is yet again null :o( I have tryed so many different linq query's that I don't think it is possible to do this without loading all menu's and then iterate through all of them and load all menuitem's into each of the menu's – Martin Overgaard Nov 2 at 22:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.