...
Code Block | ||
---|---|---|
| ||
using (var context = new TrackerDataContext()) { Priority p = new Priority(); p.Name = "High!"; context.Priority.InsertOnSubmit(p); Task t = context.Task.GetByKey(1); t.Details = "Startup Counterstrike. Used PLINQO. Project is done"; context.SubmitChanges(); AuditLog audit = context.LastAudit; } < audit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.codesmithtools.com/datacontext/audit/1.0" >> < entity action="Insert" type="Tracker.Data.Priority" >> < key name="Id" type="System.Int32" > > < value xsi:type="xsd:int" >0< /value >> < /key > > < property name="Id" type="System.Int32" > > < current xsi:type="xsd:int" >0< /current >> < /property > > < property name="Name" type="System.String" > > < current xsi:type="xsd:string" >High!< /current > > < /property > > < property name="Order" type="System.Int32" >> < current xsi:type="xsd:int" >0< /current > > < /property > > < /entity > > < entity action="Update" type="Tracker.Data.Task" >> < key name="Id" type="System.Int32" >> < value xsi:type="xsd:int" >1< /value > > < /key >> < property name="Details" type="System.String" >> < current xsi:type="xsd:string" >Startup CounterStrike. Used PLINQO. Project is done< /current >> < original xsi:type="xsd:string" >Work overtime to get project started< /original > > < /property > > < /entity >> < /audit > |
Next: Using the Rules Engine