I'm using a combination of LINQ and Dapper in my work. I'm replacing my LINQ code with Dapper in places for performance reasons. I have a lot of LINQ data objects created by dragging and dropping into the Visual Studio database diagram from SQL Server.
In the following instance I already have a LINQ object in memory and I'd like to pass it to Dapper as the parameters for a query. For example:
Animal animal = con.Query<Animal>(" select * " +
" from animal " +
" where animalid = @AnimalId " +
" and animaltype = @AnimalType ",
cagedAnimal).SingleOrDefault();
cagedAnimal contains a public properties AnimalId and AnimalType with getters and setters.
However on executing this code I get the following error:
The type : SMDApp.Models.Animal is not supported by dapper
The following code does work:
Animal animal = con.Query<Animal>(" select * " +
" from animal " +
" where animalid = @AnimalId " +
" and animaltype = @AnimalType ",
new
{
AnimalId = cagedAnimal.AnimalId,
AnimalType = cagedAnimal.AnimalType
}
).SingleOrDefault();
It'd be more convenient for me to use an existing object particularly where I'm using more than one property of the object as a parameter for the query. Can anybody tell my why this works for an anonymous object but not an auto generated LINQ object?
Edited in response to Ben Robinson's reply.
Edited a second time in response to Marc Gravell's reply.
"...", cagedAnimal)? are you perhaps doing"...", new { cagedAnimal })instead? basically - that should already work, although it is a bit wasteful in that additional parameters might be added unnecessarily/ – Marc Gravell♦ Jun 29 '11 at 12:01