task
stringlengths 24
71
| input
stringlengths 8
2.38k
| output
stringlengths 1
2.34k
| options
sequence | pageTitle
stringlengths 4
140
| outputColName
stringlengths 1
79
| url
stringlengths 41
160
| wdcFile
stringlengths 71
74
|
---|---|---|---|---|---|---|---|
a6be06fc_FormatException_Class__System___Description | [Name] BadImageFormatException(String, String) [Description] | Initializes a new instance of the BadImageFormatException class with a specified error message and file name. | [] | BadImageFormatException Class (System) | Description | https://msdn.microsoft.com/en-us/library/system.badimageformatexception.aspx | 32/1438042990603.54_20150728002310-00202-ip-10-236-191-2_881513102_0.json |
a6be06fc_FormatException_Class__System___Description | [Name] BadImageFormatException(String, String, Exception) [Description] | Initializes a new instance of the BadImageFormatException class with a specified error message and a reference to the inner exception that is the cause of this exception. | [] | BadImageFormatException Class (System) | Description | https://msdn.microsoft.com/en-us/library/system.badimageformatexception.aspx | 32/1438042990603.54_20150728002310-00202-ip-10-236-191-2_881513102_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Escape [Syntax rule] The backslash character \ is rejected by the compiler for unrecognized escapes Now the following X++ statement is rejected by the compiler: str myDateString = "31\12\2002"; The proper syntax is "31\\12\\2002". | The compiler used to accept "31\12\2002", but during run time the literal string was interpreted as a different value. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Exceptions [Syntax rule] Retry is no longer allowed outside of a catch block Now retry can occur only inside a catch block. For more information, see Exception Handling with try and catch Keywords. | It was possible to write the retry keyword outside of a catch block. This caused the program to end when the retry was reached during runtime. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Exceptions [Syntax rule] Now you can throw and catch only int values Now the only expression you can put on the throw keyword is an int. Often the best thing to throw is Global::error("Explanation");. Often the best thing to catch is an element of the Exception enum. For more information, see Exception Handling with try and catch Keywords. | It was possible to throw scalar expressions like strings and dates, such as throw "hello world";, and get no compile error. At runtime this was catch-able by a catch block that was not decorated with any specific value, such as catch {print("Catch worked.");}. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Inheritance [Syntax rule] Downcasting can now be explicit. Note It is good programming practice to avoid implicit downcasts. Now all downcasts can be explicit. This is accomplished with the new as expression operator. Explicit downcasting with the as keyword is illustrated by the following code example, in which ThingClass extends Object: ThingClass myThing = new ThingClass(); Object myObject = myThing; myThing = myObject as ThingClass; // Explicit downcast, good. For more information, see Expression Operators: Is and As for Inheritance. | It was possible to assign a base object to a derived object with the simple assignment operator, which is the equals sign (=). The compiler accepted these assignments, but during run time any misuse of an improper downcast assignment caused an error. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Inheritance [Syntax rule] Override of a base method cannot be less accessible than the base method Now when a base method is protected, the override method must be either protected or public, and the override method cannot be private. For more information, see Method Access Control. | It was possible to have a base method be decorated with protected and yet have an override of that method be private. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Inheritance [Syntax rule] Override of a base method must have the exact same return type and parameter signature as the base method Now the parameter signatures of the base method and its override method must match exactly. Also, the return types must match exactly. For more information, see Overriding a Method. | Suppose a base class had a method that inputs a parameter of the Common table, which is the base of all tables. In a derived class it was possible to override the method to instead input MyTable. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Interfaces [Syntax rule] Implementation of an interface method must match the parameter signature exactly Now the parameter signatures of the method must exactly match between the interface and the implementation of the method on a class. Also, the return types must match exactly. For more information, see Interfaces Overview. | Suppose an interface had a method that input a parameter of an int. In a class that implements the interface, it was possible to write the method with a parameter of a str. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Interfaces [Syntax rule] A non-abstract base class that implements an interface cannot rely on a derived class for that implementation Now the compiler requires that every class that implements an interface must have or inherit a complete implementation of every method of the interface. For more information, see X++, C# Comparison: Object Oriented Programming. | When a base class implements an interface, it was possible for the class to not implement the methods of the interface if a derived class implemented the methods. The only limitation was that the new constructor method could not be called on the class. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Modifiers [Syntax rule] The static modifier should not be applied to an interface Sometime after Microsoft Dynamics AX 2009 the X++ compiler might stop allowing the static modifier on interface declarations. For more information, see Interfaces Overview. | It was possible to write static interface IMyInterface {}, but the static modifier had no effect because it makes no sense in this context. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Modifiers [Syntax rule] The static modifier must not be applied to the new constructor Now the compiler issues an error when the static modifier is applied to the new method. For more information, see Constructors. | It was possible to apply the static modifier to the declaration of the new constructor method. This caused new MyClass(); to behave as a null operation. Instead, the statement MyClass::new(); would call the static new method, but that would not construct an object. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Modifiers [Syntax rule] Use an explicit access modifier on each method Now the New Method menu item explicitly includes the private keyword in its automatic declaration of the new method. The developer can type in a different modifier if appropriate. For more information, see Method Modifiers. | In the past the menu item of AOT > Classes > MyClass > New Method created the method without any access modifier. This meant that the method was implicitly public, although some X++ developers might not have been fully aware of the default. This created extra work later when a developer needed to modify the code in the method, because the developer had to research everywhere that the method might be called from. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Parameters [Syntax rule] Parameters given in a call to a new constructor method must match the parameters on the new constructor method Now the call to the new method must exactly match the declared parameter signature of the new method. For more information, see Creating a Subclass. | It was possible to pass in multiple parameters on call to a new constructor method even when the new method was declared to input no parameters. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Parameters [Syntax rule] Parameters with default values must come after all parameters that do not have default values Now in the declaration of a method, any parameter that offers a default value must come after all the parameters that do not. For more information, see the following topics: Using Optional Parameters Best Practices for Parameters | It was possible to declare a method that takes in two parameters, and have only the first parameter offer a default value. There was no purpose to this. There was no way to accept the default of the first parameter because the call must specify a value for the second parameter and cannot omit the first parameter. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Parameters [Syntax rule] Override of a method must have the same default parameters as the overridden method Now the override method must list the same parameter types in the same sequence that they are declared in the overridden method. For more information, see Overriding a Method. | It was possible to declare a method as public void myMethod(int i=22){} and the override as public void myMethod(){}. But if the override method was called as derivedObject(333); an error occurred. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
e5be0bbc_oft_Dynamics_AX_2012__AX_2012___ore_Microsoft_Dynamics_AX_2012 | [Area] Preprocessor [Syntax rule] A TODO in a comment must be the first non-whitespace in the first line of the comment Now the X++ preprocessor detects the TODO keyword only if TODO appears on the first line of the comment, and as the first non-whitespace in the comment. For more information, see TODO Comments for X++ Developer Tasks. | The X++ preprocessor used to detect the TODO keyword in a multi-line /* ... */ task comment even when the TODO appeared after other text after the first comment line. | [] | X++ Language Syntax is Stricter in Microsoft Dynamics AX 2012 [AX 2012] | Before Microsoft Dynamics AX 2012 | https://msdn.microsoft.com/EN-US/library/gg845659.aspx | 32/1438042990603.54_20150728002310-00338-ip-10-236-191-2_884518079_0.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] Equals [Description] | Indicates whether a specified object and the current IdnMapping object are equal. (Overrides Object.Equals(Object).) | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetAscii(String) [Description] | Encodes a string of domain name labels that consist of Unicode characters to a string of displayable Unicode characters in the US-ASCII character range. The string is formatted according to the IDNA standard. | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetAscii(String, Int32) [Description] | Encodes a substring of domain name labels that include Unicode characters outside the US-ASCII character range. The substring is converted to a string of displayable Unicode characters in the US-ASCII character range and is formatted according to the IDNA standard. | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetAscii(String, Int32, Int32) [Description] | Encodes the specified number of characters in a substring of domain name labels that include Unicode characters outside the US-ASCII character range. The substring is converted to a string of displayable Unicode characters in the US-ASCII character range and is formatted according to the IDNA standard. | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetHashCode [Description] | Returns a hash code for this IdnMapping object. (Overrides Object.GetHashCode().) | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetType [Description] | Gets the Type of the current instance. (Inherited from Object.) | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetUnicode(String) [Description] | Decodes a string of one or more domain name labels, encoded according to the IDNA standard, to a string of Unicode characters. | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetUnicode(String, Int32) [Description] | Decodes a substring of one or more domain name labels, encoded according to the IDNA standard, to a string of Unicode characters. | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] GetUnicode(String, Int32, Int32) [Description] | Decodes a substring of a specified length that contains one or more domain name labels, encoded according to the IDNA standard, to a string of Unicode characters. | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
cbd1dcc8_g_Class__System_Globalization___Description | [Name] ToString [Description] | Returns a string that represents the current object. (Inherited from Object.) | [] | IdnMapping Class (System.Globalization) | Description | https://msdn.microsoft.com/library/system.globalization.idnmapping.aspx | 32/1438042988650.53_20150728002308-00045-ip-10-236-191-2_890593868_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] AcceptAllChanges [Description] | Accepts all changes made to objects in the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] AddObject [Description] | Adds an object to the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ApplyCurrentValues(TEntity) [Description] | Copies the scalar values from the supplied object into the object in the ObjectContext that has the same key. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ApplyOriginalValues(TEntity) [Description] | Copies the scalar values from the supplied object into set of original values for the object in the ObjectContext that has the same key. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ApplyPropertyChanges [Description] | Obsolete. Applies property changes from a detached object to an object already attached to the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Attach [Description] | Attaches an object or object graph to the object context when the object has an entity key. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] AttachTo [Description] | Attaches an object or object graph to the object context in a specific entity set. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateDatabase [Description] | Creates the database by using the current data source connection and the metadata in the StoreItemCollection. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateDatabaseScript [Description] | Generates a data definition language (DDL) script that creates schema objects (tables, primary keys, foreign keys) for the metadata in the StoreItemCollection. The StoreItemCollection loads metadata from store schema definition language (SSDL) files. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateEntityKey [Description] | Creates the entity key for a specific object, or returns the entity key if it already exists. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateObject(T) [Description] | Creates and returns an instance of the requested type . | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateObjectSet(TEntity)() [Description] | Creates a new ObjectSet(TEntity) instance that is used to query, add, modify, and delete objects of the specified entity type. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateObjectSet(TEntity)(String) [Description] | Creates a new ObjectSet(TEntity) instance that is used to query, add, modify, and delete objects of the specified type and with the specified entity set name. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateProxyTypes [Description] | Generates an equivalent type that can be used with the Entity Framework for each type in the supplied enumeration. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] CreateQuery(T) [Description] | Creates an ObjectQuery(T) in the current object context by using the specified query string. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] DatabaseExists [Description] | Checks if the database that is specified as the database in the current data source connection exists on the data source. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] DeleteDatabase [Description] | Deletes the database that is specified as the database in the current data source connection. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] DeleteObject [Description] | Marks an object for deletion. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Detach [Description] | Removes the object from the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] DetectChanges [Description] | Ensures that ObjectStateEntry changes are synchronized with changes in all objects that are tracked by the ObjectStateManager. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Dispose() [Description] | Releases the resources used by the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Dispose(Boolean) [Description] | Releases the resources used by the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Equals(Object) [Description] | Determines whether the specified object is equal to the current object. (Inherited from Object.) | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ExecuteFunction(String, ObjectParameter[]) [Description] | Executes a stored procedure or function that is defined in the data source and expressed in the conceptual model; discards any results returned from the function; and returns the number of rows affected by the execution. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ExecuteFunction(TElement)(String, ObjectParameter[]) [Description] | Executes a stored procedure or function that is defined in the data source and mapped in the conceptual model, with the specified parameters. Returns a typed ObjectResult(T). | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ExecuteFunction(TElement)(String, MergeOption, ObjectParameter[]) [Description] | Executes the given stored procedure or function that is defined in the data source and expressed in the conceptual model, with the specified parameters, and merge option. Returns a typed ObjectResult(T). | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ExecuteStoreCommand [Description] | Executes an arbitrary command directly against the data source using the existing connection. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ExecuteStoreQuery(TElement)(String, Object[]) [Description] | Executes a query directly against the data source that returns a sequence of typed results. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ExecuteStoreQuery(TEntity)(String, String, MergeOption, Object[]) [Description] | Executes a query directly against the data source and returns a sequence of typed results. Specify the entity set and the merge option so that query results can be tracked as entities. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Finalize [Description] | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] GetHashCode [Description] | Serves as the default hash function. (Inherited from Object.) | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] GetKnownProxyTypes [Description] | Returns all the existing proxy types. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] GetObjectByKey [Description] | Returns an object that has the specified entity key. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] GetObjectType [Description] | Returns the entity type of the POCO entity associated with a proxy object of a specified type. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] GetType [Description] | Gets the Type of the current instance. (Inherited from Object.) | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] LoadProperty(Object, String) [Description] | Explicitly loads an object related to the supplied object by the specified navigation property and using the default merge option. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] LoadProperty(Object, String, MergeOption) [Description] | Explicitly loads an object that is related to the supplied object by the specified navigation property and using the specified merge option. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] LoadProperty(TEntity)(TEntity, Expression(Func(TEntity, Object))) [Description] | Explicitly loads an object that is related to the supplied object by the specified LINQ query and by using the default merge option. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] LoadProperty(TEntity)(TEntity, Expression(Func(TEntity, Object)), MergeOption) [Description] | Explicitly loads an object that is related to the supplied object by the specified LINQ query and by using the specified merge option. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] MemberwiseClone [Description] | Creates a shallow copy of the current Object. (Inherited from Object.) | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Refresh(RefreshMode, IEnumerable) [Description] | Updates a collection of objects in the object context with data from the data source. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Refresh(RefreshMode, Object) [Description] | Updates an object in the object context with data from the data source. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] SaveChanges() [Description] | Persists all updates to the data source and resets change tracking in the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] SaveChanges(Boolean) [Description] | Obsolete. Persists all updates to the data source and optionally resets change tracking in the object context. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] SaveChanges(SaveOptions) [Description] | Persists all updates to the data source with the specified SaveOptions. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] ToString [Description] | Returns a string that represents the current object. (Inherited from Object.) | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Translate(TElement)(DbDataReader) [Description] | Translates a DbDataReader that contains rows of entity data to objects of the requested entity type. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] Translate(TEntity)(DbDataReader, String, MergeOption) [Description] | Translates a DbDataReader that contains rows of entity data to objects of the requested entity type, in a specific entity set, and with the specified merge option. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
f43bd54e_xt_Class__System_Data_Objects___Description | [Name] TryGetObjectByKey [Description] | Returns an object that has the specified entity key. | [] | ObjectContext Class (System.Data.Objects) | Description | https://msdn.microsoft.com/en-us/library/bb156104.aspx?cs-save-lang=1&cs-lang=fsharp | 32/1438042988650.53_20150728002308-00270-ip-10-236-191-2_888021684_2.json |
e0dceec2_entication_Functions__Windows___Function | [Description] Prompt for and accept user credentials information from a user working in a command-line program. [Function] | CredUICmdLinePromptForCredentials | [] | Authentication Functions (Windows) | Function | https://msdn.microsoft.com/EN-US/library/aa374731.aspx | 32/1438042988650.53_20150728002308-00195-ip-10-236-191-2_892189596_22.json |
e0dceec2_entication_Functions__Windows___Function | [Description] Confirm the validity of credentials returned by CredUIPromptForCredentials or CredUICmdLinePromptForCredentials. [Function] | CredUIConfirmCredentials | [] | Authentication Functions (Windows) | Function | https://msdn.microsoft.com/EN-US/library/aa374731.aspx | 32/1438042988650.53_20150728002308-00195-ip-10-236-191-2_892189596_22.json |
e0dceec2_entication_Functions__Windows___Function | [Description] Extract the domain and user account name from a fully qualified user name. [Function] | CredUIParseUserName | [] | Authentication Functions (Windows) | Function | https://msdn.microsoft.com/EN-US/library/aa374731.aspx | 32/1438042988650.53_20150728002308-00195-ip-10-236-191-2_892189596_22.json |
e0dceec2_entication_Functions__Windows___Function | [Description] Display a dialog box that accepts credentials information from a user. [Function] | CredUIPromptForCredentials | [] | Authentication Functions (Windows) | Function | https://msdn.microsoft.com/EN-US/library/aa374731.aspx | 32/1438042988650.53_20150728002308-00195-ip-10-236-191-2_892189596_22.json |
e0dceec2_entication_Functions__Windows___Function | [Description] Creates and displays a configurable dialog box that allows users to supply credential information by using any credential provider installed on the local computer. [Function] | CredUIPromptForWindowsCredentials | [] | Authentication Functions (Windows) | Function | https://msdn.microsoft.com/EN-US/library/aa374731.aspx | 32/1438042988650.53_20150728002308-00195-ip-10-236-191-2_892189596_22.json |
e0dceec2_entication_Functions__Windows___Function | [Description] Retrieves the user name for a single logon credential. [Function] | CredUIReadSSOCredW | [] | Authentication Functions (Windows) | Function | https://msdn.microsoft.com/EN-US/library/aa374731.aspx | 32/1438042988650.53_20150728002308-00195-ip-10-236-191-2_892189596_22.json |
e0dceec2_entication_Functions__Windows___Function | [Description] Stores a single logon credential. [Function] | CredUIStoreSSOCredW | [] | Authentication Functions (Windows) | Function | https://msdn.microsoft.com/EN-US/library/aa374731.aspx | 32/1438042988650.53_20150728002308-00195-ip-10-236-191-2_892189596_22.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] CONTROL [Implied by schema permission] CONTROL | CONTROL | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] TAKE OWNERSHIP [Implied by schema permission] CONTROL | CONTROL | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] ALTER [Implied by schema permission] CONTROL | ALTER ANY SCHEMA | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] EXECUTE [Implied by schema permission] CONTROL | EXECUTE | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] INSERT [Implied by schema permission] CONTROL | INSERT | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] DELETE [Implied by schema permission] CONTROL | DELETE | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] UPDATE [Implied by schema permission] CONTROL | UPDATE | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] SELECT [Implied by schema permission] CONTROL | SELECT | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] REFERENCES [Implied by schema permission] CONTROL | REFERENCES | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] VIEW CHANGE TRACKING [Implied by schema permission] CONTROL | CONTROL | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
489f4c32_ema_Permissions__Transact_SQL___Implied_by_database_permission | [Schema permission] VIEW DEFINITION [Implied by schema permission] CONTROL | VIEW DEFINITION | [
[
"C",
"O",
"N",
"T",
"R",
"O",
"L"
],
[
"A",
"L",
"T",
"E",
"R",
" ",
"A",
"N",
"Y",
" ",
"S",
"C",
"H",
"E",
"M",
"A"
],
[
"E",
"X",
"E",
"C",
"U",
"T",
"E"
],
[
"I",
"N",
"S",
"E",
"R",
"T"
],
[
"D",
"E",
"L",
"E",
"T",
"E"
],
[
"U",
"P",
"D",
"A",
"T",
"E"
],
[
"S",
"E",
"L",
"E",
"C",
"T"
],
[
"R",
"E",
"F",
"E",
"R",
"E",
"N",
"C",
"E",
"S"
],
[
"V",
"I",
"E",
"W",
" ",
"D",
"E",
"F",
"I",
"N",
"I",
"T",
"I",
"O",
"N"
]
] | GRANT Schema Permissions (Transact-SQL) | Implied by database permission | https://msdn.microsoft.com/en-US/library/ms187940(v=sql.100).aspx | 32/1438042990603.54_20150728002310-00011-ip-10-236-191-2_887188093_1.json |
98339306_ing_MetadataServices_Namespace__Class | [Description] Provides methods that allow you to work with XML schema. [Class] | MetaData | [
[
"M",
"e",
"t",
"a",
"D",
"a",
"t",
"a"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k",
"P",
"r",
"o",
"v",
"i",
"d",
"e",
"r"
],
[
"S",
"e",
"r",
"v",
"i",
"c",
"e",
"T",
"y",
"p",
"e"
],
[
"S",
"U",
"D",
"S",
"G",
"e",
"n",
"e",
"r",
"a",
"t",
"o",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
],
[
"S",
"U",
"D",
"S",
"P",
"a",
"r",
"s",
"e",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
]
] | System.Runtime.Remoting.MetadataServices Namespace | Class | https://msdn.microsoft.com/en-US/library/system.runtime.remoting.metadataservices(v=vs.71).aspx | 32/1438042988650.53_20150728002308-00016-ip-10-236-191-2_884400293_0.json |
98339306_ing_MetadataServices_Namespace__Class | [Description] Provides the implementation for a server channel sink that generates Web Services Description Language (WSDL) dynamically on the server. [Class] | SdlChannelSink | [
[
"M",
"e",
"t",
"a",
"D",
"a",
"t",
"a"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k",
"P",
"r",
"o",
"v",
"i",
"d",
"e",
"r"
],
[
"S",
"e",
"r",
"v",
"i",
"c",
"e",
"T",
"y",
"p",
"e"
],
[
"S",
"U",
"D",
"S",
"G",
"e",
"n",
"e",
"r",
"a",
"t",
"o",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
],
[
"S",
"U",
"D",
"S",
"P",
"a",
"r",
"s",
"e",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
]
] | System.Runtime.Remoting.MetadataServices Namespace | Class | https://msdn.microsoft.com/en-US/library/system.runtime.remoting.metadataservices(v=vs.71).aspx | 32/1438042988650.53_20150728002308-00016-ip-10-236-191-2_884400293_0.json |
98339306_ing_MetadataServices_Namespace__Class | [Description] Provides the implementation for the server channel sink provider that creates SdlChannelSink instances. [Class] | SdlChannelSinkProvider | [
[
"M",
"e",
"t",
"a",
"D",
"a",
"t",
"a"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k",
"P",
"r",
"o",
"v",
"i",
"d",
"e",
"r"
],
[
"S",
"e",
"r",
"v",
"i",
"c",
"e",
"T",
"y",
"p",
"e"
],
[
"S",
"U",
"D",
"S",
"G",
"e",
"n",
"e",
"r",
"a",
"t",
"o",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
],
[
"S",
"U",
"D",
"S",
"P",
"a",
"r",
"s",
"e",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
]
] | System.Runtime.Remoting.MetadataServices Namespace | Class | https://msdn.microsoft.com/en-US/library/system.runtime.remoting.metadataservices(v=vs.71).aspx | 32/1438042988650.53_20150728002308-00016-ip-10-236-191-2_884400293_0.json |
98339306_ing_MetadataServices_Namespace__Class | [Description] Associates a well-known object type that is passed to the Web Services Description Language (WSDL) generator with a remote endpoint that can process messages sent to a method on the type. [Class] | ServiceType | [
[
"M",
"e",
"t",
"a",
"D",
"a",
"t",
"a"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k",
"P",
"r",
"o",
"v",
"i",
"d",
"e",
"r"
],
[
"S",
"e",
"r",
"v",
"i",
"c",
"e",
"T",
"y",
"p",
"e"
],
[
"S",
"U",
"D",
"S",
"G",
"e",
"n",
"e",
"r",
"a",
"t",
"o",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
],
[
"S",
"U",
"D",
"S",
"P",
"a",
"r",
"s",
"e",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
]
] | System.Runtime.Remoting.MetadataServices Namespace | Class | https://msdn.microsoft.com/en-US/library/system.runtime.remoting.metadataservices(v=vs.71).aspx | 32/1438042988650.53_20150728002308-00016-ip-10-236-191-2_884400293_0.json |
98339306_ing_MetadataServices_Namespace__Class | [Description] The exception thrown if an error occurs during generation of Web Services Description Language (WSDL). [Class] | SUDSGeneratorException | [
[
"M",
"e",
"t",
"a",
"D",
"a",
"t",
"a"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k",
"P",
"r",
"o",
"v",
"i",
"d",
"e",
"r"
],
[
"S",
"e",
"r",
"v",
"i",
"c",
"e",
"T",
"y",
"p",
"e"
],
[
"S",
"U",
"D",
"S",
"G",
"e",
"n",
"e",
"r",
"a",
"t",
"o",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
],
[
"S",
"U",
"D",
"S",
"P",
"a",
"r",
"s",
"e",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
]
] | System.Runtime.Remoting.MetadataServices Namespace | Class | https://msdn.microsoft.com/en-US/library/system.runtime.remoting.metadataservices(v=vs.71).aspx | 32/1438042988650.53_20150728002308-00016-ip-10-236-191-2_884400293_0.json |
98339306_ing_MetadataServices_Namespace__Class | [Description] The exception thrown if an error occurs during parsing of Web Services Description Language (WSDL). [Class] | SUDSParserException | [
[
"M",
"e",
"t",
"a",
"D",
"a",
"t",
"a"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k"
],
[
"S",
"d",
"l",
"C",
"h",
"a",
"n",
"n",
"e",
"l",
"S",
"i",
"n",
"k",
"P",
"r",
"o",
"v",
"i",
"d",
"e",
"r"
],
[
"S",
"e",
"r",
"v",
"i",
"c",
"e",
"T",
"y",
"p",
"e"
],
[
"S",
"U",
"D",
"S",
"G",
"e",
"n",
"e",
"r",
"a",
"t",
"o",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
],
[
"S",
"U",
"D",
"S",
"P",
"a",
"r",
"s",
"e",
"r",
"E",
"x",
"c",
"e",
"p",
"t",
"i",
"o",
"n"
]
] | System.Runtime.Remoting.MetadataServices Namespace | Class | https://msdn.microsoft.com/en-US/library/system.runtime.remoting.metadataservices(v=vs.71).aspx | 32/1438042988650.53_20150728002308-00016-ip-10-236-191-2_884400293_0.json |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.