Property SetDefaults As Boolean
Dim instance As IDataHelper Dim value As Boolean instance.SetDefaults = value value = instance.SetDefaults
bool SetDefaults {get; set;}
Property SetDefaults As Boolean
Dim instance As IDataHelper Dim value As Boolean instance.SetDefaults = value value = instance.SetDefaults
bool SetDefaults {get; set;}
//We have a DefaultValue attribute on the Person class that fills in the default value //Example: // [DefaultValue(1)] // public int PersonTypeId { get; set; } //Get the current thread static safe instance of the helper IDataHelper db = DataHelper.SessionFactory(); //Specify User Name and License Key from the receipt, leave blank for trial mode //db.UserName = "John Smith 1234"; //db.LicenseKey = "asdfl219=="; //Log to the console db.EnableLogging(); //Open the database connection db.OpenConnection(); //Create a new Person to save to the database Person currentPerson = new Person(); currentPerson.FirstName = "John"; currentPerson.LastName = "Smith"; //Save it to the database (see the SQL in the console) db.Save(currentPerson); //This will be equal to 1 Console.WriteLine(currentPerson.PersonTypeId); //Close the connection db.CloseConnection();
'We have a DefaultValue attribute on the Person class that fills in the default value 'Example: ' [DefaultValue(1)] ' public int PersonTypeId { get; set; } 'Get the current thread static safe instance of the helper Dim db As IDataHelper = DataHelper.SessionFactory() 'Specify User Name and License Key from the receipt, leave blank for trial mode 'db.UserName = "John Smith 1234" 'db.LicenseKey = "asdfl219==" 'Log to the console db.EnableLogging() 'Open the database connection db.OpenConnection() 'Create a new Person to save to the database Dim currentPerson As New Person() currentPerson.FirstName = "John" currentPerson.LastName = "Smith" 'Save it to the database (see the SQL in the console) db.Save(currentPerson) 'This will be equal to 1 Console.WriteLine(currentPerson.PersonTypeId) 'Close the connection db.CloseConnection()
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2