I posted a similar question but confusion set in so I feel the need to repost but with more clarity.
I am trying to insert into a database (SqlCompact3.5) colum which requires a DateTime datatype.
In order to get the current date & time i wish to use something like this:
SqlParameter vetCreated = new SqlParameter("@vetCreated", SqlDbType.DateTime);
vetCreated.Value = DateTime.Now;
However this results in a compile error saying DateTime() is a 'method'. which is not valid in the given context.
Any ideas?