I have this sample query:
context.BarcodeTipiDoc.AsQueryable().Where(d => d.Barcode.CompareTo(minBarcode) > 0);
You can define the column as non-unicode in the context's OnModelCreating override:
OnModelCreating
modelBuilder.Entity().Property(x => x.Barcode).IsUnicode(false);