当前位置: 首页>>代码示例>>C#>>正文


C# ValueObjectType类代码示例

本文整理汇总了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);
 }
开发者ID:danielgindi,项目名称:dg.Sql,代码行数:7,代码来源:IfNull.cs

示例2: PassThroughAggregate

 public PassThroughAggregate(string aggregateType, string tableName, object anObject, ValueObjectType objectType)
 {
     this.TableName = tableName;
     this.Object = anObject;
     this.ObjectType = objectType;
     this.AggregateType = aggregateType;
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:7,代码来源:Aggregate.cs

示例3: Add

 public Add(
     object value1, ValueObjectType valueType1,
     string tableName2, string columnName2)
 {
     this.Value1 = new ValueWrapper(value1, valueType1);
     this.Value2 = new ValueWrapper(tableName2, columnName2);
 }
开发者ID:danielgindi,项目名称:dg.Sql,代码行数:7,代码来源:Add.cs

示例4: RandWeight

 public RandWeight(
     string TableName, string Object, ValueObjectType ObjectType)
 {
     this.TableName = TableName;
     this.Object = Object;
     this.ObjectType = ObjectType;
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:7,代码来源:RandPerRow.cs

示例5: GeographyContains

 public GeographyContains(Geometry ContainingObject, Geometry ContainedObject)
 {
     this.ContainingObject = ContainingObject;
     this.ContainingObjectType = ValueObjectType.Value;
     this.ContainedObject = ContainedObject;
     this.ContainedObjectType = ValueObjectType.Value;
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:7,代码来源:GeographyContains.cs

示例6: Round

 public Round(string TableName, object Object, ValueObjectType ObjectType, int DecimalPlaces)
 {
     this.TableName = TableName;
     this.Object = Object;
     this.ObjectType = ObjectType;
     this.DecimalPlaces = DecimalPlaces;
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:7,代码来源:Round.cs

示例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;
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:8,代码来源:DateTimeAdd.cs

示例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);
 }
开发者ID:danielgindi,项目名称:dg.Sql,代码行数:8,代码来源:Multiply.cs

示例9: Divide

 public Divide(
     string tableName1, string column1,
     object value2, ValueObjectType valueType2
     )
 {
     this.Value1 = new ValueWrapper(tableName1, column1);
     this.Value2 = new ValueWrapper(value2, valueType2);
 }
开发者ID:danielgindi,项目名称:dg.Sql,代码行数:8,代码来源:Divide.cs

示例10: GeographyContains

 public GeographyContains(
     Geometry outerValue,
     string innerColumnName)
 {
     this.OuterValue = outerValue;
     this.OuterValueType = ValueObjectType.Value;
     this.InnerValue = innerColumnName;
     this.InnerValueType = ValueObjectType.ColumnName;
 }
开发者ID:danielgindi,项目名称:dg.Sql,代码行数:9,代码来源:GeographyContains.cs

示例11: IfNull

 public IfNull(
      object FirstObject, ValueObjectType FirstObjectType,
      object SecondObject, ValueObjectType SecondObjectType)
 {
     this.FirstObject = FirstObject;
     this.FirstObjectType = FirstObjectType;
     this.SecondObject = SecondObject;
     this.SecondObjectType = SecondObjectType;
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:9,代码来源:IfNull.cs

示例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);
 }
开发者ID:danielgindi,项目名称:dg.Sql,代码行数:9,代码来源:Replace.cs

示例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)
 {
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:10,代码来源:Replace.cs

示例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;
 }
开发者ID:ycaihua,项目名称:dg.Sql,代码行数:10,代码来源:Add.cs

示例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;
        }
开发者ID:asd1355215911,项目名称:dddlib,代码行数:11,代码来源:ValueObjectTypeFactory.cs


注:本文中的ValueObjectType类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。