Generate Query Objects on the fly for your Entity Framework entities using T4 templates. Don’t worry about LINQ, let the objects do all the work for you.
Table of Contents
I’ve read some stuff about T4 templates in the last 2-3 years, but only recently, I decided to give it a try. My first attempt was to generate Query Objects for Entity Framework, that’s what I’ll talk about in this article – what’s their purpose and how to use them.
In part 2, I’ll create a demo ASP.NET MVC application that uses query objects created with this template. I already have another T4 template that creates JavaScript objects for my entities, and I’m developing a custom ASP.NET view template for those objects.
Many thanks to Colin Meek [4], his work has been really helpful.
What is a Query Object?
A Query Object is an object that represents a database query [1]:
A Query Object is an interpreter [Gang of Four], that is, a structure of objects that can form itself into a SQL query. You can create this query by referring to classes and fields rather than tables and columns. In this way, those who write the queries can do so independently of the database schema and changes to the schema can be localized in a single place.
Assuming that you have a repository like this (I’m using this implementation):
public IQueryable All<T>(Expression<Func<bool, T>> expression) where T : class
Instead of:
var albuns = from x in repository.All<Album>()
where x.Artist.Name == "Metallica"
&& x.Genre.Name.Contains("Metal")
&& x.Price >= 5 && x.Price
select x;
You can do this way:
var search = new AlbumSearch();
search.PriceFrom = 5;
search.PriceTo = 10;
search.Artist = new ArtistSearch(){ Name = "Metallica" };
search.Genre = new GenreSearch(){ NameContains = "Metal" };
var albuns = from x in repository.All<Album>(search.GetExpression())
select x;
The Model – MVC Music Store
I’m using the MVC Music Store database, this is the model:
Using T4 to Generate Query Objects
T4 is a code generator built right into Visual Studio. You can generate any text file using T4 templates: C#, JavaScript, HTML, XML and many others. If you’ve never heard about it, this is a good place to start:
I’ve created a T4 template that generates automatically all the query objects, one for each entity in our model. All the generated objects have all the public
properties of their respective entities, including association properties. All objects were marked with the [Serializable]
attribute, so you can easily serialize it if you need.
String
properties, Datetimes and numeric values have some additional properties.
String Properties
For a property named Name
are generated the following properties in the query object:
Name
NameContains
NameStartsWith
NameEndsWith
Datetimes and Numeric Values
For Datetime
and numeric properties (int
, float
, …) are generated range properties (excluding Primary and foreign key properties).
Assuming a property named Price
, the following properties are generated in the query object:
Associations
It’s also possible to search in an object’s association. You can access associations and their properties exactly the same way you do it when you’re using a model object (see the example above).
IQueryableObject<T>
All the objects implement the interface IQueryableObject<T>
, where T
is the respective entity. You can use any of those methods to query against your repositories.
public interface IQueryableObject<T> where T : class
{
Func<T, bool> GetPredicate();
Expression<Func<T, bool>> GetExpression();
IQueryable<T> GetQuery(IQueryable<T> query);
}
Search Model
This is the generated search model:
Configuration
In the demo solution, double-click ModelSearch.tt and change the following lines, according to your needs:
string inputFile = @"Model.edmx";
string namespaceName = @"MusicStore.Model";
string filenameSuffix = "Search.gen.cs";
When you save the template file or you rebuild the project, the code will be regenerated. If you don’t want to generate the code, remove the value of the Custom Tool property in the property browser of the template file (by default, the value is TextTemplatingFileGenerator
).
References