I have the following helper method:
public static T CreateRequest<T>()
where T : Request, new()
{
T request = new T();
// ...
// Assign default values, etc.
// ...
return request;
}
I want to use this method from the inside of another method in another helper:
public T Map<F, T>(F value, T toValue)
where T : new()
where F : new()
{
if (typeof(T).BaseType.FullName == "MyNamespace.Request")
{
toValue = MyExtensions.CreateRequest<T>();
}
else
{
toValue = new T();
}
}
But then I get the error:
The type 'T' cannot be used as type parameter 'T' in the generic type or method 'MyExtensions.CreateRequest()'. There is no boxing conversion or type parameter conversion from 'T' to 'MyNamespace.Request'.
Is there a way to cast the type "T", so that CreateRequest would use it without problems?
EDIT:
I know I can do two things:
But I can't do the first, because in CreateRequest I user properties of Request class, and I can't do the second, because I use other types (that don't inherit from Request) with Map function.
For this scenario you'll need to loosen generic restrictions of CreateRequest
.
public static T CreateRequest<T>()
where T : new()
{
if(!typeof(Request).IsAssignableFrom(typeof(T)))
throw new ArgumentException();
var result = new T();
Request request = (Request)(object)result;
// ...
// Assign default values, etc.
// ...
return result ;
}
It might be painful because you lose compile time verification of this parameter.
Or if you want to use CreateRequest
method elsewhere then create non-generic overload for this scenario only.
public static object CreateRequest(Type requestType)
{
if(!typeof(Request).IsAssignableFrom(requestType))
throw new ArgumentException();
var result = Activator.CreateInstance(requestType);
Request request = (Request)result;
// ...
// Assign default values, etc.
// ...
return result ;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With