Using Entity Framework and Oracle DB, I would like to

insert into tablename (datetimefield, numericfield) VALUES (sysdate, 545)

How to do that without using SQL code directly?

link|improve this question

2  
It's not possible. What is the reason that you can't insert DateTime.Now or use SQL directly? Describing more context might help that you get a proposal for a good workaround. – Slauma May 24 at 19:15
Why that's not an answer? – XMLforDummies May 24 at 19:29
Which part is worth an answer for you? Using DateTime.Now is not really an answer to your question, because it creates the date on client side which will likely differ more or less slightly from the date on server side (=sysdate). Aren't you aware of using DateTime.Now and is that a solution for you? – Slauma May 24 at 20:19
The part which says "It's not possible" is a perfect answer – XMLforDummies May 25 at 13:28
feedback

This question has an open bounty worth +50 reputation from XMLforDummies ending in 2 days.

This question has not received enough attention.

1 Answer

Its not possible to set it directly using the entity framework as part of the update. For inserts you coud set a default value on the table and leave it null. You could also expose an sp that updates the date to the entity framework, and call it, but that could cause many round trips.

You could also use a trigger.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.