No longer relevant:
In one of the comments below the OP mentions a private object DateTime() { throw new NotImplementedException(); } slipping in. It happens .
I have a DateTime field in a SqlCe database. I wish to add the time the row is created hence the need for:
DateTime now = DateTime.Now;
However this issue i am getting is that this is 'a method which is not valid in the given context'. Im guessing its something to do with it being static and im using it in a non static function perhaps ?
Just to ask in the same thread
SqlParameter Created = new SqlParameter("@Created", SqlDbType.DateTime);
**Created.Value = DateTime.Now; <--- gives error DateTime() is method which is not valid in the given context**
SqlCeCommand mySQLCommand = dbCon.CreateCommand();
mySQLCommand.CommandText = "INSERT into table (Created) VALUES (@Created)";
mySQLCommand.Parameters.Add(vetCreated);
mySQLCommand.ExecuteNonQuery();
Does this seem like a resonable list commands to add DateTime to the database?
table? that would usually need to be escaped to[table]– Marc Gravell♦ May 22 '11 at 20:37