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?
|
Using Entity Framework and Oracle DB, I would like to
How to do that without using SQL code directly?
| ||||
|
feedback
|
||||
This question has an open bounty worth +50 reputation from XMLforDummies ending in 2 days.This question has not received enough attention. |
||||
|
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. | |||
|
feedback
|
DateTime.Nowor use SQL directly? Describing more context might help that you get a proposal for a good workaround. – Slauma May 24 at 19:15DateTime.Nowis 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 usingDateTime.Nowand is that a solution for you? – Slauma May 24 at 20:19