I'm working on a legacy where some fields uses special encodings. Is it somehow possible to set an decode the fields in the linq instead of doing as I'm doing now:
XisoEncoding enc = new XisoEncoding()
var q = from b in ent.Basket
where b.ID == 22038
select b;
Basket basket = query.First();
basket.STOMAN_MESSAGE = enc.DecodeString(basket.STOMAN_MESSAGE);
.....