コード例 #1
0
        public GeneratedCodeVisitor(SourceBuilder output, Dictionary<string, object> globalSymbols, NullBehaviour nullBehaviour)
        {
            _nullBehaviour = nullBehaviour;
            _source = output;

            _scope = new Scope(new Scope(null) { Variables = globalSymbols });
        }
コード例 #2
0
ファイル: GeneratedCodeVisitor.cs プロジェクト: otac0n/spark
        public GeneratedCodeVisitor(SourceWriter source, Dictionary<string, object> globalSymbols, NullBehaviour nullBehaviour)
        {
            _nullBehaviour = nullBehaviour;
            _source = source;

            _scope = new Scope(new Scope(null) { Variables = globalSymbols });
        }
コード例 #3
0
ファイル: GeneratedCodeVisitor.cs プロジェクト: yhtsnda/spark
        public GeneratedCodeVisitor(SourceWriter source, Dictionary <string, object> globalSymbols, NullBehaviour nullBehaviour)
        {
            _nullBehaviour = nullBehaviour;
            _source        = source;

            _scope = new Scope(new Scope(null)
            {
                Variables = globalSymbols
            });
        }
コード例 #4
0
 public GlobalMembersVisitor(SourceWriter output, Dictionary <string, object> globalSymbols, NullBehaviour nullBehaviour)
 {
     _source        = output;
     _globalSymbols = globalSymbols;
     _nullBehaviour = nullBehaviour;
 }
コード例 #5
0
ファイル: SparkSettings.cs プロジェクト: bbarry/spark
 public SparkSettings SetNullBehaviour(NullBehaviour nullBehaviour)
 {
     NullBehaviour = nullBehaviour;
     return this;
 }
コード例 #6
0
ファイル: GlobalMembersVisitor.cs プロジェクト: Eilon/spark
 public GlobalMembersVisitor(SourceWriter output, Dictionary<string, object> globalSymbols, NullBehaviour nullBehaviour)
 {
     _source = output;
     _globalSymbols = globalSymbols;
     _nullBehaviour = nullBehaviour;
 }
コード例 #7
0
 public SparkSettings SetNullBehaviour(NullBehaviour nullBehaviour)
 {
     NullBehaviour = nullBehaviour;
     return(this);
 }
コード例 #8
0
ファイル: DBHelper.cs プロジェクト: divyang4481/lextudio
		/// <summary>
		/// Writes the field.
		/// </summary>
		/// <param name="fieldValue">The field value.</param>
		/// <param name="nullBehaviour">The null behaviour.</param>
		/// <returns></returns>
		public static object WriteField(
			object fieldValue,
			NullBehaviour nullBehaviour )
		{
			return WriteFieldObject(
				AdoNetOleDBParamCollection.ApplyNullBehaviourToValue(
				fieldValue,
				nullBehaviour ) );
		}