in my data bases i have data name Version and i want to check or show the version that greater than 4.0.38000
how should do this ? example of my code
string key = "4.0.";
innerjoin.Where(x=> x.Version.Contains(key)).Dump();
Where version is the string, but my code is not the correct one
pls help thankyou
It's not entirely clear what you are asking, but I'm assuming you want to compare Version strings.
Use the
VersionClass
to compare version strings