TimeSpan is not supported when returned from the database. This happens
when a PostgreSQL table has a interval column
Steps to reproduce:
1.- SQL:
CREATE TABLE test
(
mytime interval
);
INSERT INTO test VALUES ('01:00');
2.- Code:
Test res = (from t in db.Test select t).FirstOrDefault ();
Console.WriteLine (res.Mytime);
Original issue reported on code.google.com by juan...@gmail.com on 23 Feb 2010 at 3:25
Original issue reported on code.google.com by
juan...@gmail.com
on 23 Feb 2010 at 3:25