Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Why do I get “error: … must be a reference type” in my C# generic method?

I have 2 Repository methods that are almost identical:

public IList<Fund> GetFundsByName(int pageSize, string searchExpression)
{
    return _session.CreateCriteria<Fund>()
        .AddNameSearchCriteria<Fund>(searchExpression)
        .AddOrder<Fund>(f => f.Name, Order.Asc)
        .SetMaxResults(pageSize).List<Fund>();
}

public IList<Company> GetCompaniesByName(int pageSize, string searchExpression)
{
    return _session.CreateCriteria<Company>()
        .AddNameSearchCriteria<Company>(searchExpression)
        .AddOrder<Company>(f => f.Name, Order.Asc)
        .SetMaxResults(pageSize).List<Company>();
}

The only difference is that the first one's _session.CreateCriteria is of type Fund and the second one is company

I was hoping that I could make this generic by changing the method definition to:

public IList<T> GetEntitiesByName<T>(int pageSize, string searchExpression)
    where T : ISearchableEntity
{
    return _session.CreateCriteria<T>()
        .AddNameSearchCriteria<T>(searchExpression)
        .AddOrder<T>(f => f.Name, Order.Asc)
        .SetMaxResults(pageSize).List<T>();
}

where ISearchableEntity is defined as:

public interface ISearchableEntity
{
    string Name { get; set; }
}

but unfortunately NHibernate doesn't like this and gives me the error:

The type 'T' must be a reference type in order to use it as parameter 'T' in the generic type or method 'NHibernate.ISession.CreateCriteria<T>()'

Is it possible for me to make this generic some other way?

share|improve this question
Are Fund and Company Classes? – AllenG Jul 29 '10 at 17:05
@AllenG, yes, Fund & Company are classes – DaveDev Jul 29 '10 at 17:13
Could also possibly look at the CreateCriteria function sourcecode and see how they constrain it to a reference type and perhaps you could employ the same method to constrain your generic type to a reference type. – AaronLS Jul 29 '10 at 17:27
@AAronLS, CreateCriteria is defined in some NHibernate assemby or another, so I don't have access to the source – DaveDev Jul 29 '10 at 20:21
NHibernate is open source, here is the file for CreateCriteria which shows they use where T : class;: nhibernate.svn.sourceforge.net/viewvc/nhibernate/trunk/… – AaronLS Jul 29 '10 at 20:43
show 1 more comment

marked as duplicate by Mark Byers, Justin Niessner, Brian, Brian Rasmussen, Graviton Jul 30 '10 at 1:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 56 down vote accepted

You could try adding the constraint class:

where T : class, ISearchableEntity
share|improve this answer
1  
That's all it takes. – rebelliard Jul 29 '10 at 18:40
Yes it is works – Spidy Mar 5 at 7:17

Here's the full list of constraints you can use on T

http://msdn.microsoft.com/en-us/library/d5x73970.aspx

share|improve this answer
Thanks for the link, very educational :) – gyurisc Dec 8 '10 at 6:57

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