Is it possible to use anonymous types with Dapper?

I can see how you can use dynamic i.e.

connection.Query<dynamic>(blah, blah, blah) 

is it then possible to do a

.Select(p=> new { A, B ,C }) 

or some variation of that afterwards?

Edit

I thought I'd show you how I am using Dapper at the moment. I tend to cache (using an InMemoryCache) data so I just do one big query at the beginning (which is super quick using Dapper) then I use Linq to sort it all out in my Repository.

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data.Common;
using System.Linq;
using Dapper;

namespace SomeNamespace.Data
{
public class DapperDataContext : IDisposable
{
    private readonly string _connectionString;
    private readonly DbProviderFactory _provider;
    private readonly string _providerName;

    public DapperDataContext()
    {
        const string connectionStringName = " DataContextConnectionString";
        _connectionString = ConfigurationManager.ConnectionStrings[connectionStringName].ConnectionString;
        _providerName = ConfigurationManager.ConnectionStrings[connectionStringName].ProviderName;
        _provider = DbProviderFactories.GetFactory(_providerName);
    }

    public IEnumerable<MyDataView> MyData1 { get; private set; }
    public IEnumerable<MyDataView> MyData2 { get; private set; }

    protected string SqlSelectMyTable1Query
    {
        get
        {
            return @"SELECT Id, A, B, C from table1Name";
        }
    }   


protected string SqlSelectMyTable2Query
{
    get
    {
    return @"SELECT Id, A, B, C from table2Name";
    }
    }

    public void Dispose()
    {
    }

    public void Refresh()
    {
        using (var connection = _provider.CreateConnection())
        {
            // blow up if null
            connection.ConnectionString = _connectionString;
            connection.Open();

            var sql = String.Join(" ",
                            new[]
                                {
                                    SqlSelectMyTable1Query,
                                    SqlSelectMyTable2Query
                                });

            using (var multi = connection.QueryMultiple(sql))
            {
                MyData1 = multi.Read<MyDataView>().ToList();
                MyData2 = multi.Read<MyDataView>().ToList();
            }
        }
    }

    public class MyDataView
    {
        public long Id { get; set; }
        public string A { get; set; }
        public string B { get; set; }
        public string C { get; set; }
    }      
}
}

The InMemoryCache looks like this

namespace Libs.Web
{
public class InMemoryCache : ICacheService
{
    #region ICacheService Members

    public T Get<T>(string cacheId, Func<T> getItemCallback) where T : class
    {
        var item = HttpRuntime.Cache.Get(cacheId) as T;
        if (item == null)
        {
            item = getItemCallback();
            HttpContext.Current.Cache.Insert(cacheId, item);
        }
        return item;
    }

    public void Clear(string cacheId)
    {
        HttpContext.Current.Cache.Remove(cacheId);
    }

    #endregion
}

public interface ICacheService
{
    T Get<T>(string cacheId, Func<T> getItemCallback) where T : class;
    void Clear(string cacheId);
}
}
link|improve this question

... maybe Marc will stop in and provide some insight ;) – IAbstract May 27 '11 at 2:16
Yeah I'm kind of expecting this kind of thing but am currently getting no joy var result = multi.Read<dynamic>().Select((p)=> new {Id = p["Id"]}).ToList(); – Peter May 27 '11 at 2:56
const string testsql = @"SELECT Id FROM table ;"; var result = connection.Query(testsql).Select((p) => new { Id = p.Id }); – Peter May 27 '11 at 3:06
If you genuinely mean via Select, then it should pretty-much work as written especially if you cast the properties so it knows the types. I will test it when I get a sec – Marc Gravell May 27 '11 at 16:23
I would upvote this question if the answer was revelant to me, but it's not imho. I'd like anonymous types without the dynamic intermediate. On a little mapper i made, i use connection.Query("SELECT * FROM Person").MapTo(() => new { Id = default(int), Name = default(string), Age = default(int?)}) to declare anonymous types, I'd love something like that inside Dapper :) – Guillaume86 Jun 13 '11 at 13:52
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

Is it possible to use anonymous types with Dapper?

Sure see the non-generic Query override, it return a dynamic IDictionary<string, object> this object is an expando that can either be cast or accessed with dot notation.

Eg:

var v = connection.Query("select 1 as a, b ad 2").First(); 
Console.Write("{0} {1}",v.a, v.b) \\ prints: 1 2

is it then possible to do a .Select

Sure, you get an IEnumerable<dynamic> ... you can run anything you want on that.

link|improve this answer
so what you are saying is that this const string testsql = @"SELECT Id FROM table ;"; var result = connection.Query(testsql).ToList().Select((p) => new { Id = p.Id }); should work? – Peter May 30 '11 at 0:11
@Peter yes though you could be a bit more concise :) connection.Query(testsql).Select((p) => new { (int)p.Id }); also if you are only selecting Ids you could go with connection.Query<int>(testsql).Select((Id) => new { Id }); – Sam Saffron May 30 '11 at 0:24
OK I'll give it a go – Peter May 30 '11 at 0:33
so when I do this const string testsql = @"SELECT form_id as Id FROM form ;"; connection.Query(testsql).Select((p) => new { (int)p.Id }); I get the compile time error 'Invalid anonymous type member declarator. Anonymous type members must be declared with a member assignment, simple name or member access.' so I try this var x = connection.Query<dynamic>(testsql).Select((p) => new { Id = (int)p.Id }); and I get the runtime error 'System.Dynamic.DynamicObject' does not contain a definition for 'Id' – Peter May 30 '11 at 0:40
@Peter you are selecting form_id so you are going to have to change it to: new { Id = (int)p.form_id }) – Sam Saffron May 30 '11 at 1:49
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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