Encrypt column data with LINQ

Posted by kape123 on Stack Overflow See other posts from Stack Overflow or by kape123
Published on 2010-05-19T18:10:10Z Indexed on 2010/05/19 18:30 UTC
Read the original article Hit count: 253

Filed under:
|
|
|
|

I was wondering if there is easy solution to this or I'm stuck with following:

When updating DB:

dti.Pass = Crypter.Encrypt(dti.Pass);
_db.SubmitChanges();

When selecting from DB:

Data.DbTableItem dti = _db.Single(a=>a.Id == id);
dti.Pass = Crypter.Decrypt(dti.Pass);

Meaning - I am not really into writing repetitive code and this seems like logical thing to be supported by LINQ; so I'm wondering if it is.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about c#