本文整理汇总了C#中ValueObjectType类的典型用法代码示例。如果您正苦于以下问题:C# ValueObjectType类的具体用法?C# ValueObjectType怎么用?C# ValueObjectType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ValueObjectType类属于命名空间,在下文中一共展示了ValueObjectType类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: IfNull
public IfNull(
object firstValue, ValueObjectType firstValueType,
object secondValue, ValueObjectType secondValueType)
{
this.Value1 = new ValueWrapper(firstValue, firstValueType);
this.Value2 = new ValueWrapper(secondValue, secondValueType);
}
示例2: PassThroughAggregate
public PassThroughAggregate(string aggregateType, string tableName, object anObject, ValueObjectType objectType)
{
this.TableName = tableName;
this.Object = anObject;
this.ObjectType = objectType;
this.AggregateType = aggregateType;
}
示例3: Add
public Add(
object value1, ValueObjectType valueType1,
string tableName2, string columnName2)
{
this.Value1 = new ValueWrapper(value1, valueType1);
this.Value2 = new ValueWrapper(tableName2, columnName2);
}
示例4: RandWeight
public RandWeight(
string TableName, string Object, ValueObjectType ObjectType)
{
this.TableName = TableName;
this.Object = Object;
this.ObjectType = ObjectType;
}
示例5: GeographyContains
public GeographyContains(Geometry ContainingObject, Geometry ContainedObject)
{
this.ContainingObject = ContainingObject;
this.ContainingObjectType = ValueObjectType.Value;
this.ContainedObject = ContainedObject;
this.ContainedObjectType = ValueObjectType.Value;
}
示例6: Round
public Round(string TableName, object Object, ValueObjectType ObjectType, int DecimalPlaces)
{
this.TableName = TableName;
this.Object = Object;
this.ObjectType = ObjectType;
this.DecimalPlaces = DecimalPlaces;
}
示例7: DateTimeAdd
public DateTimeAdd(string TableName, object Object, ValueObjectType ObjectType, DateTimeUnit unit, Int64 interval)
{
this.TableName = TableName;
this.Object = Object;
this.ObjectType = ObjectType;
this.Unit = unit;
this.Interval = interval;
}
示例8: Multiply
public Multiply(
string tableName1, object value1, ValueObjectType valueType1,
string tableName2, object value2, ValueObjectType valueType2
)
{
this.Value1 = new ValueWrapper(tableName1, value1, valueType1);
this.Value2 = new ValueWrapper(tableName2, value2, valueType2);
}
示例9: Divide
public Divide(
string tableName1, string column1,
object value2, ValueObjectType valueType2
)
{
this.Value1 = new ValueWrapper(tableName1, column1);
this.Value2 = new ValueWrapper(value2, valueType2);
}
示例10: GeographyContains
public GeographyContains(
Geometry outerValue,
string innerColumnName)
{
this.OuterValue = outerValue;
this.OuterValueType = ValueObjectType.Value;
this.InnerValue = innerColumnName;
this.InnerValueType = ValueObjectType.ColumnName;
}
示例11: IfNull
public IfNull(
object FirstObject, ValueObjectType FirstObjectType,
object SecondObject, ValueObjectType SecondObjectType)
{
this.FirstObject = FirstObject;
this.FirstObjectType = FirstObjectType;
this.SecondObject = SecondObject;
this.SecondObjectType = SecondObjectType;
}
示例12: Replace
public Replace(
string sourceTableName, string sourceColumn,
object search, ValueObjectType searchType,
object replace, ValueObjectType replaceWithType)
{
this.SourceValue = new ValueWrapper(sourceTableName, sourceColumn);
this.SearchValue = new ValueWrapper(search, searchType);
this.ReplaceWithValue = new ValueWrapper(replace, replaceWithType);
}
示例13: Replace
public Replace(
string Source, ValueObjectType SourceType,
string Search, ValueObjectType SearchType,
string ReplaceWith, ValueObjectType ReplaceWithType)
: this(
null, Source, SourceType,
null, Search, SearchType,
null, ReplaceWith, ReplaceWithType)
{
}
示例14: Add
public Add(string TableName1, object Object1, ValueObjectType ObjectType1,
string TableName2, object Object2, ValueObjectType ObjectType2)
{
this.TableName1 = TableName1;
this.Object1 = Object1;
this.ObjectType1 = ObjectType1;
this.TableName2 = TableName2;
this.Object2 = Object2;
this.ObjectType2 = ObjectType2;
}
示例15: Create
public ValueObjectType Create(Type type)
{
var valueObjectType = new ValueObjectType(type, this.typeAnalyzerService);
var configuration = new BootstrapperConfiguration(valueObjectType, this.typeAnalyzerService);
var bootstrapper = this.bootstrapperProvider.GetBootstrapper(type);
bootstrapper.Invoke(configuration);
return valueObjectType;
}