Hi, I have looked in the documentation and also in the forum but didn't find anything. So is it even possible with DO to set some default values on fields like: [Field (DefaultValue(typeof(int), 100))] public int Number {get;set;} thanks, David This thread was imported from our support forum. The original discussion may contain more detailed answer. Original topic by david_csharp. |
There is really no way to do this - at least, currently. Only "default defaults" are supported. Partially, this is because of schema upgrade layer - it's much easier to deal with defaults there. But you can:
|