Use UDF syntax. For example:
BusinessObject["Id"] = System.Guid.NewGuid();
Note that indexing is required
BusinessObject.Id = System.Guid.NewGuid();
will normally not work since the "Id" column is usually ReadOnly.