I have a DateTime property. I need this property's default value to be DateTime.Now. And then I found out that you can specify an attribute StoreGeneratedPattern="Computed" and set it to (getdate()) in SQL. This works successfully. But I can't change this property in code. Sometimes I need to change this property to any DateTime value. But my changes are not saved.
            Asked
            
        
        
            Active
            
        
            Viewed 1.9k times
        
    15
            
            
         
    
    
        anar khalilov
        
- 16,993
- 9
- 47
- 62
 
    
    
        ebattulga
        
- 10,774
- 20
- 78
- 116
1 Answers
15
            Setting this property to Computed is telling EF that you cannot set the value directly. How could you? This property exists for the sake of computed columns, which by definition are not saved back to the database.
Unfortunately, EF's "Default Value" property can only be set to values known at compile-time, and so not DateTime.Now
This link provides a decent workaround:
You can also handle the SavingChanges event on your context, and add default values there, but that only happens when you actually call SaveChanges(), not when the object is created.
    partial void OnContextCreated() {
        this.SavingChanges += new EventHandler(AccrualTrackingEntities_SavingChanges);
    }
    void AccrualTrackingEntities_SavingChanges(object sender, EventArgs e) {
        List<Invoice> Invoices = this.ObjectStateManager
            .GetObjectStateEntries(System.Data.EntityState.Added | System.Data.EntityState.Modified)
            .Select(entry => entry.Entity)
            .OfType<Invoice>().ToList();
        foreach(Invoice I in Invoices)
            if (I.EntityState == System.Data.EntityState.Added) {
                //set default values
            } else {
                //??  whatever
            }
    }
 
    
    
        Community
        
- 1
- 1
 
    
    
        Adam Rackis
        
- 82,527
- 56
- 270
- 393