本文整理汇总了C#中sones.GraphDB.TypeManagement.BasicTypes.ADBBaseObject.SetValue方法的典型用法代码示例。如果您正苦于以下问题:C# ADBBaseObject.SetValue方法的具体用法?C# ADBBaseObject.SetValue怎么用?C# ADBBaseObject.SetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sones.GraphDB.TypeManagement.BasicTypes.ADBBaseObject
的用法示例。
在下文中一共展示了ADBBaseObject.SetValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ApplyParams
public override void ApplyParams(params EdgeTypeParamDefinition[] myParams)
{
if (myParams.Count() == 0)
throw new GraphDBException(new Error_EdgeParameterCountMismatch(EdgeTypeName, 0, 1));
// The first parameter has to be the type
if (myParams[0].Type != ParamType.GraphType)
{
throw new GraphDBException(new Error_DataTypeDoesNotMatch(myParams[0].Type.ToString(), "BaseType like 'Integer', 'Double, etc"));
}
else
{
_CountBy = myParams[0].Param as ADBBaseObject;
}
_Count = _CountBy.Clone();
_Count.SetValue(DBObjectInitializeType.Default);
#region Get default node if exists
if (myParams.Any(p => p.Type == ParamType.DefaultValueDef))
{
var def = (from p in myParams where p.Type == ParamType.DefaultValueDef select p).First();
if (_CountBy.IsValidValue(def.Param))
{
_CountBy.SetValue(def.Param);
}
else
{
throw new GraphDBException(new Error_DataTypeDoesNotMatch(_CountBy.ObjectName, def.Param.GetType().Name));
}
}
else
{
_CountBy.SetValue(1);
}
#endregion
CalcEstimatedSize(this);
}