使用C#API,是否可以使用该API将文本设置为DATE列?
我找不到任何示例或解决方法来将字符串设置为DATE列,并出现此错误:
Date, did not conform to the strict requirements for type DATE.'
该列未设置为实施日期值。
答案 0 :(得分:2)
看看Cell
对象上的Strict property,并将其设置为false
。例如,您的代码可能看起来像这样
var cellToUpdate = new Cell
{
ColumnId = 12345,
Value = "text value",
Strict = false
};