| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860 | <?xml version="1.0"?><doc>    <assembly>        <name>DevExpress.DataAccess.v15.1.UI</name>    </assembly>    <members>        <member name="T:DevExpress.DataAccess.UI.Localization.DataAccessUIResLocalizer">            <summary>                <para>A default localizer to translate UI resources for the Data Access library.</para>            </summary>        </member>        <member name="M:DevExpress.DataAccess.UI.Localization.DataAccessUIResLocalizer.#ctor">            <summary>                <para>Initializes a new instance of the DataAccessUIResLocalizer class with default settings.</para>            </summary>        </member>        <member name="M:DevExpress.DataAccess.UI.Localization.DataAccessUIResLocalizer.GetLocalizedString(DevExpress.DataAccess.UI.Localization.DataAccessUIStringId)">            <summary>                <para>Gets the string, localized by the current DataAccessUIResLocalizer, for the specified user interface element.</para>            </summary>            <param name="id">		A <see cref="T:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId"/> enumeration value specifying the UI element whose caption (text) is to be localized.            </param>            <returns>A <see cref="T:System.String"/> that is the text to be displayed within the specified UI element.</returns>        </member>        <member name="P:DevExpress.DataAccess.UI.Localization.DataAccessUIResLocalizer.Language">            <summary>                <para>Returns the name of the language currently used by this localizer object.</para>            </summary>            <value>A <see cref="T:System.String"/> value that specifies the language of the user interface localization.</value>        </member>        <member name="T:DevExpress.DataAccess.UI.Localization.DataAccessUILocalizer">            <summary>                <para>Provides the means to localize the user interface provided by Data Access library.</para>            </summary>        </member>        <member name="M:DevExpress.DataAccess.UI.Localization.DataAccessUILocalizer.#ctor">            <summary>                <para>Initializes a new instance of the DataAccessUILocalizer class with default settings.</para>            </summary>        </member>        <member name="P:DevExpress.DataAccess.UI.Localization.DataAccessUILocalizer.Active">            <summary>                <para>Gets or sets a localizer object providing localization of the user interface at runtime.</para>            </summary>            <value>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> descendant used to localize the user interface at runtime. </value>        </member>        <member name="M:DevExpress.DataAccess.UI.Localization.DataAccessUILocalizer.CreateDefaultLocalizer">            <summary>                <para>Returns an  <b>XtraLocalizer</b> object representing default resources, based on the thread's language and regional settings (culture). </para>            </summary>            <returns>A <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object representing resources based on the thread's culture.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Localization.DataAccessUILocalizer.CreateResXLocalizer">            <summary>                <para>Returns an <b>XtraLocalizer</b> object representing resources based on the thread's language and regional settings (culture).</para>            </summary>            <returns>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object representing resources based on the thread's culture.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Localization.DataAccessUILocalizer.GetString(DevExpress.DataAccess.UI.Localization.DataAccessUIStringId)">            <summary>                <para>Gets the string, localized by the current DataAccessUILocalizer, for the specified user interface element.</para>            </summary>            <param name="id">		A <see cref="T:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId"/> enumeration value specifying the UI element whose caption (text) is to be localized.            </param>            <returns>A <see cref="T:System.String"/> that is the text to be displayed within the specified UI element.</returns>        </member>        <member name="T:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId">            <summary>                <para>Contains values corresponding to strings that can be localized.</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ConnectionEditorTitle">            <summary>                <para><b>Default value</b>: "Connection Editor"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ConnectionErrorFormDetailPattern">            <summary>                <para><b>Default value</b>: "Connection name: {0}nError message: {1}"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.DataSourceName">            <summary>                <para><b>Default value</b>: "Data source name: {0}"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.DefaultNameParameter">            <summary>                <para><b>Default value</b>: "Parameter"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.DSTypeEF">            <summary>                <para><b>Default value</b>: "Entity Framework"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.DSTypeObject">            <summary>                <para><b>Default value</b>: "Object Binding"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.DSTypeSql">            <summary>                <para><b>Default value</b>: "Database"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.EFConnectionEditorTitle">            <summary>                <para><b>Default value</b>: "Entity Framework Data Connection Editor"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.EFDataMemberEditorTitle">            <summary>                <para><b>Default value</b>: "Entity Framework Data Member Editor"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.EFDataSourceDesignerVerbEdit">            <summary>                <para><b>Default value</b>: "Edit..."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.EFDataSourceEditorTitle">            <summary>                <para><b>Default value</b>: "Entity Framework Data Source Editor"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.EFEditorsNoStoredProcs">            <summary>                <para><b>Default value:</b> "No stored procedures are available in the data context."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.EFStoredProcsEditorTitle">            <summary>                <para><b>Default value:</b> "Manage Stored Procedures"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ErrorFormDatasourceInitializationText">            <summary>                <para><b>Default value</b>: "Unable to load data into one or several datasources. See information below for details."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorEmptyColumnText">            <summary>                <para><b>Default value</b>: "<Select a column>"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorEmptyTableText">            <summary>                <para><b>Default value</b>: "<Select a table>"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorEqualOperator">            <summary>                <para><b>Default value</b>: "Equals to"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorFillAllFieldsException">            <summary>                <para><b>Default value</b>: "Some fields are empty. Please fill all empty fields or remove the corresponding conditions to proceed."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorGreaterOperator">            <summary>                <para><b>Default value</b>: "Is greater than"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorGreaterOrEqualOperator">            <summary>                <para><b>Default value</b>: "Is greater than or equal to"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorLessOperator">            <summary>                <para><b>Default value</b>: "Is less than"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorLessOrEqualOperator">            <summary>                <para><b>Default value</b>: "Is less than or equal to"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.JoinEditorNotEqualOperator">            <summary>                <para><b>Default value</b>: "Does not equal to"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.LoadingDataCustomError">            <summary>                <para><b>Default value</b>: "Error message:\r\n{0}\r\n"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.LoadingDataException">            <summary>                <para><b>Default value:</b> "Data loading failed because the exception occurred."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.LoadingDataSourceAborted">            <summary>                <para><b>Default value</b>: "Data loading has been aborted."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.LoadingDataSourceOpeningConnectionError">            <summary>                <para><b>Default value</b>: "Connection name: {0}\r\nError message:\r\n{1}\r\n"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.LoadingDatasourceOutOfMemoryError">            <summary>                <para><b>Default value</b>: "Not enough memory to load data"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.LoadingDataSqlError">            <summary>                <para><b>Default value</b>: "SQL execution error:\r\n{0}\r\n"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorAddConditionMessage">            <summary>                <para><b>Default value:</b> "Create a new condition"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorAddRelationMessage">            <summary>                <para><b>Default value:</b> "Add a relation to the detail query"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorInvalidColumnNameMessage">            <summary>                <para><b>Default value:</b> "Cannot find the specified column: \"{0}\". Specify an existing column name."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorInvalidColumnQueryNameMessage">            <summary>                <para><b>Default value:</b> "Cannot find the specified query: \"{0}\". Specify an existing query name before selecting a column."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorInvalidQueryNameMessage">            <summary>                <para><b>Default value</b>: "Cannot find the specified query: \"{0}\". Specify an existing query name."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorInvalidRelationNameMessage">            <summary>                <para><b>Default value:</b> "A relation with the specified name already exists."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorRemoveConditionMessage">            <summary>                <para><b>Default value:</b> "Remove the condition"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MasterDetailEditorRemoveRelationMessage">            <summary>                <para><b>Default value:</b> "Remove the relation"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MessageBoxConfirmationTitle">            <summary>                <para><b>Default value</b>: "Confirmation"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MessageBoxErrorTitle">            <summary>                <para><b>Default value</b>: "Error"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MessageBoxWarningTitle">            <summary>                <para><b>Default value</b>: "Warning"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MessageCannotLoadDatabasesList">            <summary>                <para><b>Default value</b>: "Error has occurred during loading databases list."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MessageLessThanTwoQueries">            <summary>                <para><b>Default value</b>: "At least two queries are required to create a master-detail relation."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.MessageMissingConnection">            <summary>                <para><b>Default value</b>: "No connection has been specified."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSConstructorEditorTitle">            <summary>                <para><b>Default value</b>: "Configure Constructor Settings"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSDataMemberEditorTitle">            <summary>                <para><b>Default value</b>: "Configure Data Member"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSDataSourceEditorTitle">            <summary>                <para><b>Default value</b>: "Configure Data Source"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsAbstractTypeMessage">            <summary>                <para><b>Default value</b>: "Cannot use a constructor to create an object of the {0} type that is a static or abstract class, or interface."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsCannotResolveDataMember">            <summary>                <para><b>Default value</b>: "Cannot resolve the specified data member. To specify the data member and its parameters, use the Data Member editor."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsCannotResolveDataSource">            <summary>                <para><b>Default value</b>: "Cannot resolve the specified object type. To specify the object's assembly, return type, data member and/or constructor parameters, use the Data Source editor."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsIsPropertyMessage">            <summary>                <para><b>Default value</b>: "The {0} data member is a property. To be able to receive parameters, a data member must be a method."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsNoDataMemberMessage">            <summary>                <para><b>Default value</b>: "Cannot specify parameters unless the DataMember property has been assigned a value."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsNoDataSetMessage">            <summary>                <para><b>Default value</b>: "The current operation cannot be accomplished unless the data source has been specified."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsNoMembersInType">            <summary>                <para><b>Default value</b>: "The {0} data source type does not provide any members suitable for binding."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsNoParametersMessage">            <summary>                <para><b>Default value</b>: "The {0} data member cannot receive parameters, because this is a method without parameters."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSEditorsStaticMemberMessage">            <summary>                <para><b>Default value</b>: "{0} is a static member. Using a constructor to create an instance of the {1} class is not appropriate."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.ODSParametersEditorTitle">            <summary>                <para><b>Default value</b>: "Configure Parameters"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryBuilderColumn">            <summary>                <para><b>Default value</b>: "Column"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryBuilderColumnsOf">            <summary>                <para><b>Default value</b>: "Columns of {0}"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryBuilderNoTablesAndViews">            <summary>                <para><b>Default value</b>: "A database does not contain any tables or views and does not support sql editing. Try to change a database."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryBuilderTable">            <summary>                <para><b>Default value</b>: "Table"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlAliasAlreadyExists">            <summary>                <para><b>Default value</b>: "The specified alias already exists. Do you want to correct the value?"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlDataPreviewCaption">            <summary>                <para><b>Default value</b>: "Data Preview (First 1000 Rows Displayed)"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlExpressionChanged">            <summary>                <para><b>Default value</b>: "This action will reset the SQL expression, and all your changes will be discarded. Do you wish to continue?"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlJoinCommandPattern">            <summary>                <para><b>Default value:</b> "Join {0}"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlNoSelection">            <summary>                <para><b>Default value</b>: "No column has been selected. Please select at least one column to proceed."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlRemoveTables">            <summary>                <para><b>Default value</b>: "The following tables will be removed from the query.\r\n\r\n{0}\r\nDo you wish to continue?"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlTableNameAlreadyExists">            <summary>                <para><b>Default value</b>: "A table with the specified name already exists. Please specify a different table name."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryDesignControlTableNameEmpty">            <summary>                <para><b>Default value</b>: "The table name cannot be empty."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryEditorMessageInvalidQuery">            <summary>                <para><b>Default value:</b> "Query validation failed with message:\r\n{0}\r\n\r\nTo discard this query and begin from scratch, click OK.\r\nTo close the visual editor and keep the current query, click Cancel."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryEditorTitle">            <summary>                <para><b>Default value</b>: "Query Editor"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.QueryEditorWaitFormValidating">            <summary>                <para><b>Default value:</b> "Validating query..."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.RebuildResultSchemaCaption">            <summary>                <para><b>Default value</b>: "Rebuild Result Schema"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.RebuildResultSchemaComplete">            <summary>                <para><b>Default value</b>: "Result schema is rebuilt successfully."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.RebuildResultSchemaConfirmationText">            <summary>                <para><b>Default value</b>: "Do you wish to execute the following queries on the server and obtain the resulting schema?"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SortingTypeAscending">            <summary>                <para><b>Default value</b>: "Ascending"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SortingTypeDescending">            <summary>                <para><b>Default value</b>: "Descending"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SortingTypeNone">            <summary>                <para><b>Default value</b>: "Unsorted"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SqlDataSourceDesignerVerbEditConnection">            <summary>                <para><b>Default value</b>: "Configure Connection..."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SqlDataSourceDesignerVerbManageQueries">            <summary>                <para><b>Default value</b>: "Manage Queries..."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SqlDataSourceDesignerVerbManageRelations">            <summary>                <para><b>Default value</b>: "Manage Relations..."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SqlDataSourceDesignerVerbRebuildSchema">            <summary>                <para><b>Default value</b>: "Rebuild Schema"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.SqlDataSourceDesignerVerbRequestDatabaseSchema">            <summary>                <para><b>Default value</b>: "Request Database Schema"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.UpdateDBSchemaCaption">            <summary>                <para><b>Default value</b>: "Request Database Schema"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.UpdateDBSchemaComplete">            <summary>                <para><b>Default value</b>: "Database schema is updated successfully."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardCannotConnectMessage">            <summary>                <para><b>Default value</b>: "Cannot connect to the database. See the details below."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardCannotCreateDataSourceMessage">            <summary>                <para><b>Default value</b>: "Cannot create an empty data source. Please select an object to include."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardCannotRetrieveDatabasesMessage">            <summary>                <para><b>Default value</b>: "Cannot retrieve the list of available databases. See the details below."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardConfirmExecutionMessage">            <summary>                <para><b>Default value</b>: "Do you wish to execute the query on the server and obtain the resulting query schema?"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardCustomConnectionString">            <summary>                <para><b>Default value</b>: "Custom connection string"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardDataSourceCreatedMessage">            <summary>                <para><b>Default value</b>: "The data source has been successfully created"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardDataSourceEmptyNameMessage">            <summary>                <para><b>Default value</b>: "The data source name cannot be empty."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardDataSourceNameExistsMessage">            <summary>                <para><b>Default value</b>: "A data source with the specified name already exists"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardDuplicatingColumnNameMessage">            <summary>                <para><b>Default value</b>: "A data schema contains a duplicated column '{0}'. Modify the query so that all columns have unique names."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardEmptyStoredProceduresListMessage">            <summary>                <para><b>Default value:</b> "There are no any stored procedures in current database."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardFinishPageText">            <summary>                <para><b>Default value</b>: "Select an object to include in your data source"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseConnection">            <summary>                <para><b>Default value</b>: "Do you wish to use an existing data connection?"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseDataSourceName">            <summary>                <para><b>Default value</b>: "Enter the data source name"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseDSType">            <summary>                <para><b>Default value:</b> "Select the data source type."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseEFConnectionString">            <summary>                <para><b>Default value</b>: "Do you wish to select a connection string from the list of available settings?"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseEFContext">            <summary>                <para><b>Default value</b>: "Choose an existing data context or browse for an assembly."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseEFDataMember">            <summary>                <para><b>Default value</b>: "Select a data member"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseObjectAssembly">            <summary>                <para><b>Default value</b>: "Select an assembly containing the class type definition of a data source."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseObjectBindingMode">            <summary>                <para><b>Default value</b>: "Select the data binding mode."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseObjectConstructor">            <summary>                <para><b>Default value</b>: "Select a data source constructor."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseObjectMember">            <summary>                <para><b>Default value</b>: "Select a data source member (if required)."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageChooseObjectType">            <summary>                <para><b>Default value</b>: "Select a data source type."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageConfigureParameters">            <summary>                <para><b>Default value</b>: "Configure query parameters and preview the result."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageConfigureQuery">            <summary>                <para><b>Default value</b>: "Create a query or select a stored procedure."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageConfigureStoredProcedures">            <summary>                <para><b>Default value</b>: "Add stored procedures to the data source, configure their parameters and preview the result."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageConnectionProperties">            <summary>                <para><b>Default value</b>: "Select the data provider and specify the connection properties."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageEFConnectionProperties">            <summary>                <para><b>Default value:</b> "Specify a connection string."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageObjectConstructorParameters">            <summary>                <para><b>Default value</b>: "Specify the constructor parameters."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageObjectMemberParameters">            <summary>                <para><b>Default value</b>: "Specify the method parameters."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardPageSaveConnection">            <summary>                <para><b>Default value</b>: "Save the connection string."</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardTitleDatasource">            <summary>                <para><b>Default value:</b> "Data Source Wizard"</para>            </summary>        </member>        <member name="F:DevExpress.DataAccess.UI.Localization.DataAccessUIStringId.WizardTitleODS">            <summary>                <para><b>Default value</b>: "ObjectDataSource Wizard"</para>            </summary>        </member>        <member name="T:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper">            <summary>                <para>Provides functionality to configure the connection to a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> in code.</para>            </summary>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource)">            <summary>                <para>Invokes the <b>Query Designer</b> to add a new query to the specified <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/>.</para>            </summary>            <param name="dataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService)">            <summary>                <para>Invokes the <b>Query Designer</b> to add a new query to the specified <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/>.</para>            </summary>            <param name="dataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="dbSchemaProvider">		An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProvider"/> interface.            </param>            <param name="parameterService">		An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">            <summary>                <para>Invokes the <b>Query Designer</b> to add a new query to the specified <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/>.</para>            </summary>            <param name="dataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="dbSchemaProvider">		An <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProvider"/>, providing access to the schema of the SQL data base.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">            <summary>                <para>Invokes the <b>Query Designer</b> to add a new query to the specified <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/>.</para>            </summary>            <param name="dataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">            <summary>                <para>Invokes the <b>Query Designer</b> to add a new query to the specified <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/>.</para>            </summary>            <param name="dataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="dataSource">		             </param>            <param name="lookAndFeel">		             </param>            <param name="owner">		             </param>            <param name="dbSchemaProvider">		             </param>            <param name="parameterService">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="dataSource">		             </param>            <param name="lookAndFeel">		             </param>            <param name="owner">		             </param>            <param name="dbSchemaProvider">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="dataSource">		             </param>            <param name="lookAndFeel">		             </param>            <param name="owner">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="dataSource">		             </param>            <param name="lookAndFeel">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="dataSource">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">            <summary>                <para>Invokes the <b>Connection Editor</b> with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource)">            <summary>                <para>Invokes the <b>Connection Editor</b> with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>. </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService)">            <summary>                <para>Invokes the <b>Connection Editor</b> with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.             </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.             </param>            <param name="connectionStorageService">		An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.             </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">            <summary>                <para>Invokes the <b>Connection Editor</b> with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.             </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.             </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.             </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">            <summary>                <para>Invokes the <b>Connection Editor</b> to edit the parameters used to establish a connection to a data base.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.             </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>. </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">            <summary>                <para>Invokes the <b>Connection Editor</b> to edit the parameters used to establish a connection to a data base.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.             </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.             </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.             </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>. </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource)">            <summary>                <para>Invokes the <b>Connection Editor</b> to edit the parameters used to establish a connection to a database.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.             </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>. </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService)">            <summary>                <para>Invokes the <b>Connection Editor</b> to edit the parameters used to establish a connection to a database.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.             </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.             </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.             </param>            <param name="connectionStorageService">		An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.             </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>Finish</b> button; otherwise, <b>false</b>. </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel)">            <summary>                <para>Invokes the <b>Query Designer</b> to edit the specified query.</para>            </summary>            <param name="query">		A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService)">            <summary>                <para>Invokes the <b>Query Designer</b> to edit the specified query.</para>            </summary>            <param name="query">		A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="dbSchemaProvider">		An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProvider"/> interface.            </param>            <param name="parameterService">		An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">            <summary>                <para>Invokes the <b>Query Designer</b> to edit the specified query.</para>            </summary>            <param name="query">		A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery)">            <summary>                <para>Invokes the <b>Query Designer</b> to edit the specified query.</para>            </summary>            <param name="query">		A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">            <summary>                <para>Invokes the <b>Query Designer</b> to edit the specified query.</para>            </summary>            <param name="query">		A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="dbSchemaProvider">		An <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProvider"/>, providing access to the schema of the SQL data base            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="query">		             </param>            <param name="lookAndFeel">		             </param>            <param name="owner">		             </param>            <param name="dbSchemaProvider">		             </param>            <param name="parameterService">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="query">		             </param>            <param name="lookAndFeel">		             </param>            <param name="owner">		             </param>            <param name="dbSchemaProvider">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="query">		             </param>            <param name="lookAndFeel">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="query">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">            <summary>                <para> </para>            </summary>            <param name="query">		             </param>            <param name="lookAndFeel">		             </param>            <param name="owner">		             </param>            <param name="repositoryItemsProvider">		             </param>            <returns> </returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">            <summary>                <para>Invokes the <b>Manage Queries</b> dialog window with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">            <summary>                <para>Invokes the <b>Manage Queries</b> dialog window with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService)">            <summary>                <para>Invokes the <b>Manage Queries</b> dialog window with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="dbSchemaProvider">		An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProvider"/> interface.            </param>            <param name="parameterService">		An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource)">            <summary>                <para>Invokes the <b>Manage Queries</b> dialog window with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">            <summary>                <para>Invokes the <b>Manage Queries</b> dialog window with the specified settings.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="dbSchemaProvider">		An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProvider"/> interface.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">            <summary>                <para>Invokes the <b>Master-Detail Relations Editor</b> to specify the key data fields by which a pair of queries is related.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">            <summary>                <para>Invokes the <b>Master-Detail Relations Editor</b> to specify the key data fields by which a pair of queries is related.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource)">            <summary>                <para>Invokes the <b>Master-Detail Relations Editor</b> to specify the key data fields by which a pair of queries is related.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">            <summary>                <para>Invokes the <b>Master-Detail Relations Editor</b> to specify the key data fields by which a pair of queries is related.</para>            </summary>            <param name="sqlDataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="dbSchemaProvider">		An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProvider"/> interface.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>        <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.RebuildResultSchema(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Boolean)">            <summary>                <para>Updates the data source schema available on the client in accordance to the current data source structure.</para>            </summary>            <param name="dataSource">		A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.            </param>            <param name="lookAndFeel">		A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application's look and feel settings.            </param>            <param name="owner">		An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.            </param>            <param name="parameterService">		An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.            </param>            <param name="showSuccessMessage">		<b>true</b> to acknowledge the task completion upon successfully updating the schema; otherwise <b>false</b>.            </param>            <returns><b>true</b>, if the dialog was finished by clicking the <b>OK</b> button; otherwise, <b>false</b>.</returns>        </member>    </members></doc>
 |