Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Emmanuel S
on
I try to get different information from different places but in the same widget (so with same data set)

I want to add the track name in combinaison with classname for result title.

I try to catch information with something like that:
IEntitySessionResult result = (IEntitySessionResult) value;
ITrack result1 = (ITrack) value;

var classname = result.Entity.Car.Class.Name;
var track0 = result1.DisplayName;

return track0 + " " + classname;


But track0 return no good value.