Can Azure table support null value or empty value in the column field at the time of insert a record on the azure table?
Let take an example if I have one table with below fields
Where the column description is mentioned below:
- LastModifiedOn DateTime with Null Value accepted
- LastModifiedById Guid with Null Value Accepted
- IsActive bool with NotNull
- Description string with Null Value Accepted
I want to prepare the same table in the azure table but when I was created then those have a null value that columns haven't created into the azure table only those columns have a value that should be created in the Azure table. and I want both cases should be cover in my requirement must have value and null or empty columns.
Should this be achievable or not?