nHydrate.Generator.Models.TableComponent.GetSQLSchema C# (CSharp) Method

GetSQLSchema() public method

public GetSQLSchema ( ) : string
return string
		public string GetSQLSchema()
		{
			if (string.IsNullOrEmpty(this.Parent.DBSchema)) return "dbo";
			return this.Parent.DBSchema;
		}