1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Data.Entity.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Data.Entity.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.6.57.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.0")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("System.Data.Entity.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
19 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
20 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
21 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
22 namespace System.Data
23 {
24     [System.SerializableAttribute]
25     public sealed partial class EntityCommandCompilationException : System.Data.EntityException
26     {
EntityCommandCompilationException()27         public EntityCommandCompilationException() { }
EntityCommandCompilationException(string message)28         public EntityCommandCompilationException(string message) { }
EntityCommandCompilationException(string message, System.Exception innerException)29         public EntityCommandCompilationException(string message, System.Exception innerException) { }
30     }
31     [System.SerializableAttribute]
32     public sealed partial class EntityCommandExecutionException : System.Data.EntityException
33     {
EntityCommandExecutionException()34         public EntityCommandExecutionException() { }
EntityCommandExecutionException(string message)35         public EntityCommandExecutionException(string message) { }
EntityCommandExecutionException(string message, System.Exception innerException)36         public EntityCommandExecutionException(string message, System.Exception innerException) { }
37     }
38     [System.SerializableAttribute]
39     public partial class EntityException : System.Data.DataException
40     {
EntityException()41         public EntityException() { }
EntityException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)42         protected EntityException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
EntityException(string message)43         public EntityException(string message) { }
EntityException(string message, System.Exception innerException)44         public EntityException(string message, System.Exception innerException) { }
45     }
46     [System.Diagnostics.DebuggerDisplayAttribute("{ConcatKeyValue()}")]
47     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
48     [System.SerializableAttribute]
49     public sealed partial class EntityKey : System.IEquatable<System.Data.EntityKey>
50     {
51         public static readonly System.Data.EntityKey EntityNotValidKey;
52         public static readonly System.Data.EntityKey NoEntitySetKey;
EntityKey()53         public EntityKey() { }
EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>> entityKeyValues)54         public EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>> entityKeyValues) { }
EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Data.EntityKeyMember> entityKeyValues)55         public EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Data.EntityKeyMember> entityKeyValues) { }
EntityKey(string qualifiedEntitySetName, string keyName, object keyValue)56         public EntityKey(string qualifiedEntitySetName, string keyName, object keyValue) { }
57         [System.Runtime.Serialization.DataMemberAttribute]
58         public string EntityContainerName { get { throw null; } set { } }
59         [System.Runtime.Serialization.DataMemberAttribute]
60         public System.Data.EntityKeyMember[] EntityKeyValues { get { throw null; } set { } }
61         [System.Runtime.Serialization.DataMemberAttribute]
62         public string EntitySetName { get { throw null; } set { } }
63         public bool IsTemporary { get { throw null; } }
Equals(System.Data.EntityKey other)64         public bool Equals(System.Data.EntityKey other) { throw null; }
Equals(object obj)65         public override bool Equals(object obj) { throw null; }
GetEntitySet(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace)66         public System.Data.Metadata.Edm.EntitySet GetEntitySet(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace) { throw null; }
GetHashCode()67         public override int GetHashCode() { throw null; }
68         [System.ComponentModel.BrowsableAttribute(false)]
69         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
70         [System.Runtime.Serialization.OnDeserializedAttribute]
OnDeserialized(System.Runtime.Serialization.StreamingContext context)71         public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
72         [System.ComponentModel.BrowsableAttribute(false)]
73         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
74         [System.Runtime.Serialization.OnDeserializingAttribute]
OnDeserializing(System.Runtime.Serialization.StreamingContext context)75         public void OnDeserializing(System.Runtime.Serialization.StreamingContext context) { }
operator ==(System.Data.EntityKey key1, System.Data.EntityKey key2)76         public static bool operator ==(System.Data.EntityKey key1, System.Data.EntityKey key2) { throw null; }
operator !=(System.Data.EntityKey key1, System.Data.EntityKey key2)77         public static bool operator !=(System.Data.EntityKey key1, System.Data.EntityKey key2) { throw null; }
78     }
79     [System.Runtime.Serialization.DataContractAttribute]
80     [System.SerializableAttribute]
81     public partial class EntityKeyMember
82     {
EntityKeyMember()83         public EntityKeyMember() { }
EntityKeyMember(string keyName, object keyValue)84         public EntityKeyMember(string keyName, object keyValue) { }
85         [System.Runtime.Serialization.DataMemberAttribute]
86         public string Key { get { throw null; } set { } }
87         [System.Runtime.Serialization.DataMemberAttribute]
88         public object Value { get { throw null; } set { } }
ToString()89         public override string ToString() { throw null; }
90     }
91     [System.SerializableAttribute]
92     public sealed partial class EntitySqlException : System.Data.EntityException
93     {
EntitySqlException()94         public EntitySqlException() { }
EntitySqlException(string message)95         public EntitySqlException(string message) { }
EntitySqlException(string message, System.Exception innerException)96         public EntitySqlException(string message, System.Exception innerException) { }
97         public int Column { get { throw null; } }
98         public string ErrorContext { get { throw null; } }
99         public string ErrorDescription { get { throw null; } }
100         public int Line { get { throw null; } }
101         [System.Security.SecurityCriticalAttribute]
102         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)103         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
104     }
105     [System.ComponentModel.DataAnnotations.BindableTypeAttribute(IsBindable=false)]
106     [System.FlagsAttribute]
107     public enum EntityState
108     {
109         Added = 4,
110         Deleted = 8,
111         Detached = 1,
112         Modified = 16,
113         Unchanged = 2,
114     }
115     public partial interface IExtendedDataRecord : System.Data.IDataRecord
116     {
117         System.Data.Common.DataRecordInfo DataRecordInfo { get; }
GetDataReader(int i)118         System.Data.Common.DbDataReader GetDataReader(int i);
GetDataRecord(int i)119         System.Data.Common.DbDataRecord GetDataRecord(int i);
120     }
121     [System.SerializableAttribute]
122     public sealed partial class InvalidCommandTreeException : System.Data.DataException
123     {
InvalidCommandTreeException()124         public InvalidCommandTreeException() { }
InvalidCommandTreeException(string message)125         public InvalidCommandTreeException(string message) { }
InvalidCommandTreeException(string message, System.Exception innerException)126         public InvalidCommandTreeException(string message, System.Exception innerException) { }
127     }
128     [System.SerializableAttribute]
129     public sealed partial class MappingException : System.Data.EntityException
130     {
MappingException()131         public MappingException() { }
MappingException(string message)132         public MappingException(string message) { }
MappingException(string message, System.Exception innerException)133         public MappingException(string message, System.Exception innerException) { }
134     }
135     [System.SerializableAttribute]
136     public sealed partial class MetadataException : System.Data.EntityException
137     {
MetadataException()138         public MetadataException() { }
MetadataException(string message)139         public MetadataException(string message) { }
MetadataException(string message, System.Exception innerException)140         public MetadataException(string message, System.Exception innerException) { }
141     }
142     [System.SerializableAttribute]
143     public sealed partial class ObjectNotFoundException : System.Data.DataException
144     {
ObjectNotFoundException()145         public ObjectNotFoundException() { }
ObjectNotFoundException(string message)146         public ObjectNotFoundException(string message) { }
ObjectNotFoundException(string message, System.Exception innerException)147         public ObjectNotFoundException(string message, System.Exception innerException) { }
148     }
149     [System.SerializableAttribute]
150     public sealed partial class OptimisticConcurrencyException : System.Data.UpdateException
151     {
OptimisticConcurrencyException()152         public OptimisticConcurrencyException() { }
OptimisticConcurrencyException(string message)153         public OptimisticConcurrencyException(string message) { }
OptimisticConcurrencyException(string message, System.Exception innerException)154         public OptimisticConcurrencyException(string message, System.Exception innerException) { }
OptimisticConcurrencyException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries)155         public OptimisticConcurrencyException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries) { }
156     }
157     [System.SerializableAttribute]
158     public sealed partial class PropertyConstraintException : System.Data.ConstraintException
159     {
PropertyConstraintException()160         public PropertyConstraintException() { }
PropertyConstraintException(string message)161         public PropertyConstraintException(string message) { }
PropertyConstraintException(string message, System.Exception innerException)162         public PropertyConstraintException(string message, System.Exception innerException) { }
PropertyConstraintException(string message, string propertyName)163         public PropertyConstraintException(string message, string propertyName) { }
PropertyConstraintException(string message, string propertyName, System.Exception innerException)164         public PropertyConstraintException(string message, string propertyName, System.Exception innerException) { }
165         public string PropertyName { get { throw null; } }
166         [System.Security.SecurityCriticalAttribute]
167         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)168         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
169     }
170     [System.SerializableAttribute]
171     public sealed partial class ProviderIncompatibleException : System.Data.EntityException
172     {
ProviderIncompatibleException()173         public ProviderIncompatibleException() { }
ProviderIncompatibleException(string message)174         public ProviderIncompatibleException(string message) { }
ProviderIncompatibleException(string message, System.Exception innerException)175         public ProviderIncompatibleException(string message, System.Exception innerException) { }
176     }
177     [System.SerializableAttribute]
178     public partial class UpdateException : System.Data.DataException
179     {
UpdateException()180         public UpdateException() { }
UpdateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)181         protected UpdateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
UpdateException(string message)182         public UpdateException(string message) { }
UpdateException(string message, System.Exception innerException)183         public UpdateException(string message, System.Exception innerException) { }
UpdateException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries)184         public UpdateException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries) { }
185         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Objects.ObjectStateEntry> StateEntries { get { throw null; } }
186     }
187 }
188 namespace System.Data.Common
189 {
190     public partial class DataRecordInfo
191     {
DataRecordInfo(System.Data.Metadata.Edm.TypeUsage metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo)192         public DataRecordInfo(System.Data.Metadata.Edm.TypeUsage metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo) { }
193         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.FieldMetadata> FieldMetadata { get { throw null; } }
194         public System.Data.Metadata.Edm.TypeUsage RecordType { get { throw null; } }
195     }
196     public partial class DbCommandDefinition
197     {
DbCommandDefinition()198         protected DbCommandDefinition() { }
DbCommandDefinition(System.Data.Common.DbCommand prototype)199         protected DbCommandDefinition(System.Data.Common.DbCommand prototype) { }
CreateCommand()200         public virtual System.Data.Common.DbCommand CreateCommand() { throw null; }
201     }
202     public abstract partial class DbProviderManifest
203     {
204         public static readonly string ConceptualSchemaDefinition;
205         public static readonly string ConceptualSchemaDefinitionVersion3;
206         public static readonly string StoreSchemaDefinition;
207         public static readonly string StoreSchemaDefinitionVersion3;
208         public static readonly string StoreSchemaMapping;
209         public static readonly string StoreSchemaMappingVersion3;
DbProviderManifest()210         protected DbProviderManifest() { }
211         public abstract string NamespaceName { get; }
EscapeLikeArgument(string argument)212         public virtual string EscapeLikeArgument(string argument) { throw null; }
GetDbInformation(string informationType)213         protected abstract System.Xml.XmlReader GetDbInformation(string informationType);
GetEdmType(System.Data.Metadata.Edm.TypeUsage storeType)214         public abstract System.Data.Metadata.Edm.TypeUsage GetEdmType(System.Data.Metadata.Edm.TypeUsage storeType);
GetFacetDescriptions(System.Data.Metadata.Edm.EdmType edmType)215         public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetFacetDescriptions(System.Data.Metadata.Edm.EdmType edmType);
GetInformation(string informationType)216         public System.Xml.XmlReader GetInformation(string informationType) { throw null; }
GetStoreFunctions()217         public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetStoreFunctions();
GetStoreType(System.Data.Metadata.Edm.TypeUsage edmType)218         public abstract System.Data.Metadata.Edm.TypeUsage GetStoreType(System.Data.Metadata.Edm.TypeUsage edmType);
GetStoreTypes()219         public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetStoreTypes();
SupportsEscapingLikeArgument(out char escapeCharacter)220         public virtual bool SupportsEscapingLikeArgument(out char escapeCharacter) { escapeCharacter = default(char); throw null; }
221     }
222     [System.CLSCompliantAttribute(false)]
223     public abstract partial class DbProviderServices
224     {
DbProviderServices()225         protected DbProviderServices() { }
CreateCommandDefinition(System.Data.Common.CommandTrees.DbCommandTree commandTree)226         public System.Data.Common.DbCommandDefinition CreateCommandDefinition(System.Data.Common.CommandTrees.DbCommandTree commandTree) { throw null; }
CreateCommandDefinition(System.Data.Common.DbCommand prototype)227         public virtual System.Data.Common.DbCommandDefinition CreateCommandDefinition(System.Data.Common.DbCommand prototype) { throw null; }
CreateCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree)228         public System.Data.Common.DbCommandDefinition CreateCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree) { throw null; }
CreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)229         public void CreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
CreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)230         public string CreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
CreateDbCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree)231         protected abstract System.Data.Common.DbCommandDefinition CreateDbCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree);
DatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)232         public bool DatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
DbCreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)233         protected virtual void DbCreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
DbCreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)234         protected virtual string DbCreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
DbDatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)235         protected virtual bool DbDatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)236         protected virtual void DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
DbGetSpatialServices(string manifestToken)237         protected virtual System.Data.Spatial.DbSpatialServices DbGetSpatialServices(string manifestToken) { throw null; }
DeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)238         public void DeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
GetDbProviderManifest(string manifestToken)239         protected abstract System.Data.Common.DbProviderManifest GetDbProviderManifest(string manifestToken);
GetDbProviderManifestToken(System.Data.Common.DbConnection connection)240         protected abstract string GetDbProviderManifestToken(System.Data.Common.DbConnection connection);
GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken)241         protected virtual System.Data.Spatial.DbSpatialDataReader GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken) { throw null; }
GetProviderFactory(System.Data.Common.DbConnection connection)242         public static System.Data.Common.DbProviderFactory GetProviderFactory(System.Data.Common.DbConnection connection) { throw null; }
GetProviderManifest(string manifestToken)243         public System.Data.Common.DbProviderManifest GetProviderManifest(string manifestToken) { throw null; }
GetProviderManifestToken(System.Data.Common.DbConnection connection)244         public string GetProviderManifestToken(System.Data.Common.DbConnection connection) { throw null; }
GetProviderServices(System.Data.Common.DbConnection connection)245         public static System.Data.Common.DbProviderServices GetProviderServices(System.Data.Common.DbConnection connection) { throw null; }
GetSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken)246         public System.Data.Spatial.DbSpatialDataReader GetSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken) { throw null; }
GetSpatialServices(string manifestToken)247         public System.Data.Spatial.DbSpatialServices GetSpatialServices(string manifestToken) { throw null; }
SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value)248         protected virtual void SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value) { }
249     }
250     public abstract partial class DbXmlEnabledProviderManifest : System.Data.Common.DbProviderManifest
251     {
DbXmlEnabledProviderManifest(System.Xml.XmlReader reader)252         protected DbXmlEnabledProviderManifest(System.Xml.XmlReader reader) { }
253         public override string NamespaceName { get { throw null; } }
254         protected System.Collections.Generic.Dictionary<string, System.Data.Metadata.Edm.PrimitiveType> StoreTypeNameToEdmPrimitiveType { get { throw null; } }
255         protected System.Collections.Generic.Dictionary<string, System.Data.Metadata.Edm.PrimitiveType> StoreTypeNameToStorePrimitiveType { get { throw null; } }
GetFacetDescriptions(System.Data.Metadata.Edm.EdmType type)256         public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetFacetDescriptions(System.Data.Metadata.Edm.EdmType type) { throw null; }
GetStoreFunctions()257         public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetStoreFunctions() { throw null; }
GetStoreTypes()258         public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetStoreTypes() { throw null; }
259     }
260     public partial class EntityRecordInfo : System.Data.Common.DataRecordInfo
261     {
EntityRecordInfo(System.Data.Metadata.Edm.EntityType metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo, System.Data.EntityKey entityKey, System.Data.Metadata.Edm.EntitySet entitySet)262         public EntityRecordInfo(System.Data.Metadata.Edm.EntityType metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo, System.Data.EntityKey entityKey, System.Data.Metadata.Edm.EntitySet entitySet) : base (default(System.Data.Metadata.Edm.TypeUsage), default(System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember>)) { }
263         public System.Data.EntityKey EntityKey { get { throw null; } }
264     }
265     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
266     public partial struct FieldMetadata
267     {
FieldMetadataSystem.Data.Common.FieldMetadata268         public FieldMetadata(int ordinal, System.Data.Metadata.Edm.EdmMember fieldType) { throw null;}
269         public System.Data.Metadata.Edm.EdmMember FieldType { get { throw null; } }
270         public int Ordinal { get { throw null; } }
271     }
272 }
273 namespace System.Data.Common.CommandTrees
274 {
275     public abstract partial class DbAggregate
276     {
DbAggregate()277         internal DbAggregate() { }
278         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
279         public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
280     }
281     public sealed partial class DbAndExpression : System.Data.Common.CommandTrees.DbBinaryExpression
282     {
DbAndExpression()283         internal DbAndExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)284         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)285         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
286     }
287     public sealed partial class DbApplyExpression : System.Data.Common.CommandTrees.DbExpression
288     {
DbApplyExpression()289         internal DbApplyExpression() { }
290         public System.Data.Common.CommandTrees.DbExpressionBinding Apply { get { throw null; } }
291         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)292         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)293         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
294     }
295     public sealed partial class DbArithmeticExpression : System.Data.Common.CommandTrees.DbExpression
296     {
DbArithmeticExpression()297         internal DbArithmeticExpression() { }
298         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)299         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)300         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
301     }
302     public abstract partial class DbBinaryExpression : System.Data.Common.CommandTrees.DbExpression
303     {
DbBinaryExpression()304         internal DbBinaryExpression() { }
305         public System.Data.Common.CommandTrees.DbExpression Left { get { throw null; } }
306         public System.Data.Common.CommandTrees.DbExpression Right { get { throw null; } }
307     }
308     public sealed partial class DbCaseExpression : System.Data.Common.CommandTrees.DbExpression
309     {
DbCaseExpression()310         internal DbCaseExpression() { }
311         public System.Data.Common.CommandTrees.DbExpression Else { get { throw null; } }
312         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Then { get { throw null; } }
313         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> When { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)314         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)315         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
316     }
317     public sealed partial class DbCastExpression : System.Data.Common.CommandTrees.DbUnaryExpression
318     {
DbCastExpression()319         internal DbCastExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)320         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)321         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
322     }
323     public abstract partial class DbCommandTree
324     {
DbCommandTree()325         internal DbCommandTree() { }
326         public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Metadata.Edm.TypeUsage>> Parameters { get { throw null; } }
327     }
328     public sealed partial class DbComparisonExpression : System.Data.Common.CommandTrees.DbBinaryExpression
329     {
DbComparisonExpression()330         internal DbComparisonExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)331         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)332         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
333     }
334     public sealed partial class DbConstantExpression : System.Data.Common.CommandTrees.DbExpression
335     {
DbConstantExpression()336         internal DbConstantExpression() { }
337         public object Value { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)338         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)339         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
340     }
341     public sealed partial class DbCrossJoinExpression : System.Data.Common.CommandTrees.DbExpression
342     {
DbCrossJoinExpression()343         internal DbCrossJoinExpression() { }
344         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> Inputs { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)345         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)346         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
347     }
348     public sealed partial class DbDeleteCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
349     {
DbDeleteCommandTree()350         internal DbDeleteCommandTree() { }
351         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
352     }
353     public sealed partial class DbDerefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
354     {
DbDerefExpression()355         internal DbDerefExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)356         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)357         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
358     }
359     public sealed partial class DbDistinctExpression : System.Data.Common.CommandTrees.DbUnaryExpression
360     {
DbDistinctExpression()361         internal DbDistinctExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)362         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)363         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
364     }
365     public sealed partial class DbElementExpression : System.Data.Common.CommandTrees.DbUnaryExpression
366     {
DbElementExpression()367         internal DbElementExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)368         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)369         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
370     }
371     public sealed partial class DbEntityRefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
372     {
DbEntityRefExpression()373         internal DbEntityRefExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)374         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)375         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
376     }
377     public sealed partial class DbExceptExpression : System.Data.Common.CommandTrees.DbBinaryExpression
378     {
DbExceptExpression()379         internal DbExceptExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)380         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)381         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
382     }
383     public abstract partial class DbExpression
384     {
DbExpression()385         internal DbExpression() { }
386         public System.Data.Common.CommandTrees.DbExpressionKind ExpressionKind { get { throw null; } }
387         public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)388         public abstract void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor);
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)389         public abstract TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor);
390         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Equals(object obj)391         public override bool Equals(object obj) { throw null; }
FromBinary(byte[] value)392         public static System.Data.Common.CommandTrees.DbExpression FromBinary(byte[] value) { throw null; }
FromBoolean(System.Nullable<bool> value)393         public static System.Data.Common.CommandTrees.DbExpression FromBoolean(System.Nullable<bool> value) { throw null; }
FromByte(System.Nullable<byte> value)394         public static System.Data.Common.CommandTrees.DbExpression FromByte(System.Nullable<byte> value) { throw null; }
FromDateTime(System.Nullable<System.DateTime> value)395         public static System.Data.Common.CommandTrees.DbExpression FromDateTime(System.Nullable<System.DateTime> value) { throw null; }
FromDateTimeOffset(System.Nullable<System.DateTimeOffset> value)396         public static System.Data.Common.CommandTrees.DbExpression FromDateTimeOffset(System.Nullable<System.DateTimeOffset> value) { throw null; }
FromDecimal(System.Nullable<decimal> value)397         public static System.Data.Common.CommandTrees.DbExpression FromDecimal(System.Nullable<decimal> value) { throw null; }
FromDouble(System.Nullable<double> value)398         public static System.Data.Common.CommandTrees.DbExpression FromDouble(System.Nullable<double> value) { throw null; }
FromGeography(System.Data.Spatial.DbGeography value)399         public static System.Data.Common.CommandTrees.DbExpression FromGeography(System.Data.Spatial.DbGeography value) { throw null; }
FromGeometry(System.Data.Spatial.DbGeometry value)400         public static System.Data.Common.CommandTrees.DbExpression FromGeometry(System.Data.Spatial.DbGeometry value) { throw null; }
FromGuid(System.Nullable<System.Guid> value)401         public static System.Data.Common.CommandTrees.DbExpression FromGuid(System.Nullable<System.Guid> value) { throw null; }
FromInt16(System.Nullable<short> value)402         public static System.Data.Common.CommandTrees.DbExpression FromInt16(System.Nullable<short> value) { throw null; }
FromInt32(System.Nullable<int> value)403         public static System.Data.Common.CommandTrees.DbExpression FromInt32(System.Nullable<int> value) { throw null; }
FromInt64(System.Nullable<long> value)404         public static System.Data.Common.CommandTrees.DbExpression FromInt64(System.Nullable<long> value) { throw null; }
FromSingle(System.Nullable<float> value)405         public static System.Data.Common.CommandTrees.DbExpression FromSingle(System.Nullable<float> value) { throw null; }
FromString(string value)406         public static System.Data.Common.CommandTrees.DbExpression FromString(string value) { throw null; }
GetHashCode()407         public override int GetHashCode() { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(byte[] value)408         public static implicit operator System.Data.Common.CommandTrees.DbExpression (byte[] value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Data.Spatial.DbGeography value)409         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Data.Spatial.DbGeography value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Data.Spatial.DbGeometry value)410         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Data.Spatial.DbGeometry value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<bool> value)411         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<bool> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<byte> value)412         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<byte> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<System.DateTimeOffset> value)413         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<System.DateTimeOffset> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<System.DateTime> value)414         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<System.DateTime> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<decimal> value)415         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<decimal> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<double> value)416         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<double> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<System.Guid> value)417         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<System.Guid> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<short> value)418         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<short> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<int> value)419         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<int> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<long> value)420         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<long> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Nullable<float> value)421         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<float> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(string value)422         public static implicit operator System.Data.Common.CommandTrees.DbExpression (string value) { throw null; }
423     }
424     public sealed partial class DbExpressionBinding
425     {
DbExpressionBinding()426         internal DbExpressionBinding() { }
427         public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
428         public System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable { get { throw null; } }
429         public string VariableName { get { throw null; } }
430         public System.Data.Metadata.Edm.TypeUsage VariableType { get { throw null; } }
431     }
432     public enum DbExpressionKind
433     {
434         All = 0,
435         And = 1,
436         Any = 2,
437         Case = 3,
438         Cast = 4,
439         Constant = 5,
440         CrossApply = 6,
441         CrossJoin = 7,
442         Deref = 8,
443         Distinct = 9,
444         Divide = 10,
445         Element = 11,
446         EntityRef = 12,
447         Equals = 13,
448         Except = 14,
449         Filter = 15,
450         FullOuterJoin = 16,
451         Function = 17,
452         GreaterThan = 18,
453         GreaterThanOrEquals = 19,
454         GroupBy = 20,
455         InnerJoin = 21,
456         Intersect = 22,
457         IsEmpty = 23,
458         IsNull = 24,
459         IsOf = 25,
460         IsOfOnly = 26,
461         Lambda = 57,
462         LeftOuterJoin = 27,
463         LessThan = 28,
464         LessThanOrEquals = 29,
465         Like = 30,
466         Limit = 31,
467         Minus = 32,
468         Modulo = 33,
469         Multiply = 34,
470         NewInstance = 35,
471         Not = 36,
472         NotEquals = 37,
473         Null = 38,
474         OfType = 39,
475         OfTypeOnly = 40,
476         Or = 41,
477         OuterApply = 42,
478         ParameterReference = 43,
479         Plus = 44,
480         Project = 45,
481         Property = 46,
482         Ref = 47,
483         RefKey = 48,
484         RelationshipNavigation = 49,
485         Scan = 50,
486         Skip = 51,
487         Sort = 52,
488         Treat = 53,
489         UnaryMinus = 54,
490         UnionAll = 55,
491         VariableReference = 56,
492     }
493     public abstract partial class DbExpressionVisitor
494     {
DbExpressionVisitor()495         protected DbExpressionVisitor() { }
Visit(System.Data.Common.CommandTrees.DbAndExpression expression)496         public abstract void Visit(System.Data.Common.CommandTrees.DbAndExpression expression);
Visit(System.Data.Common.CommandTrees.DbApplyExpression expression)497         public abstract void Visit(System.Data.Common.CommandTrees.DbApplyExpression expression);
Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression)498         public abstract void Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression);
Visit(System.Data.Common.CommandTrees.DbCaseExpression expression)499         public abstract void Visit(System.Data.Common.CommandTrees.DbCaseExpression expression);
Visit(System.Data.Common.CommandTrees.DbCastExpression expression)500         public abstract void Visit(System.Data.Common.CommandTrees.DbCastExpression expression);
Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression)501         public abstract void Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression);
Visit(System.Data.Common.CommandTrees.DbConstantExpression expression)502         public abstract void Visit(System.Data.Common.CommandTrees.DbConstantExpression expression);
Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression)503         public abstract void Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbDerefExpression expression)504         public abstract void Visit(System.Data.Common.CommandTrees.DbDerefExpression expression);
Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression)505         public abstract void Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression);
Visit(System.Data.Common.CommandTrees.DbElementExpression expression)506         public abstract void Visit(System.Data.Common.CommandTrees.DbElementExpression expression);
Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression)507         public abstract void Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbExceptExpression expression)508         public abstract void Visit(System.Data.Common.CommandTrees.DbExceptExpression expression);
Visit(System.Data.Common.CommandTrees.DbExpression expression)509         public abstract void Visit(System.Data.Common.CommandTrees.DbExpression expression);
Visit(System.Data.Common.CommandTrees.DbFilterExpression expression)510         public abstract void Visit(System.Data.Common.CommandTrees.DbFilterExpression expression);
Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression)511         public abstract void Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression);
Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression)512         public abstract void Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression);
Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression)513         public abstract void Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression)514         public abstract void Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression)515         public abstract void Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression)516         public abstract void Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression);
Visit(System.Data.Common.CommandTrees.DbJoinExpression expression)517         public abstract void Visit(System.Data.Common.CommandTrees.DbJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression)518         public virtual void Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { }
Visit(System.Data.Common.CommandTrees.DbLikeExpression expression)519         public abstract void Visit(System.Data.Common.CommandTrees.DbLikeExpression expression);
Visit(System.Data.Common.CommandTrees.DbLimitExpression expression)520         public abstract void Visit(System.Data.Common.CommandTrees.DbLimitExpression expression);
Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression)521         public abstract void Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression);
Visit(System.Data.Common.CommandTrees.DbNotExpression expression)522         public abstract void Visit(System.Data.Common.CommandTrees.DbNotExpression expression);
Visit(System.Data.Common.CommandTrees.DbNullExpression expression)523         public abstract void Visit(System.Data.Common.CommandTrees.DbNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression)524         public abstract void Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression);
Visit(System.Data.Common.CommandTrees.DbOrExpression expression)525         public abstract void Visit(System.Data.Common.CommandTrees.DbOrExpression expression);
Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression)526         public abstract void Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression);
Visit(System.Data.Common.CommandTrees.DbProjectExpression expression)527         public abstract void Visit(System.Data.Common.CommandTrees.DbProjectExpression expression);
Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression)528         public abstract void Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression);
Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression)529         public abstract void Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefExpression expression)530         public abstract void Visit(System.Data.Common.CommandTrees.DbRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression)531         public abstract void Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression);
Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression)532         public abstract void Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression);
Visit(System.Data.Common.CommandTrees.DbScanExpression expression)533         public abstract void Visit(System.Data.Common.CommandTrees.DbScanExpression expression);
Visit(System.Data.Common.CommandTrees.DbSkipExpression expression)534         public abstract void Visit(System.Data.Common.CommandTrees.DbSkipExpression expression);
Visit(System.Data.Common.CommandTrees.DbSortExpression expression)535         public abstract void Visit(System.Data.Common.CommandTrees.DbSortExpression expression);
Visit(System.Data.Common.CommandTrees.DbTreatExpression expression)536         public abstract void Visit(System.Data.Common.CommandTrees.DbTreatExpression expression);
Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression)537         public abstract void Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression);
Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression)538         public abstract void Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression);
539     }
540     public abstract partial class DbExpressionVisitor<TResultType>
541     {
DbExpressionVisitor()542         protected DbExpressionVisitor() { }
Visit(System.Data.Common.CommandTrees.DbAndExpression expression)543         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbAndExpression expression);
Visit(System.Data.Common.CommandTrees.DbApplyExpression expression)544         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbApplyExpression expression);
Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression)545         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression);
Visit(System.Data.Common.CommandTrees.DbCaseExpression expression)546         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCaseExpression expression);
Visit(System.Data.Common.CommandTrees.DbCastExpression expression)547         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCastExpression expression);
Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression)548         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression);
Visit(System.Data.Common.CommandTrees.DbConstantExpression expression)549         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbConstantExpression expression);
Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression)550         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbDerefExpression expression)551         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbDerefExpression expression);
Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression)552         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression);
Visit(System.Data.Common.CommandTrees.DbElementExpression expression)553         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbElementExpression expression);
Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression)554         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbExceptExpression expression)555         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbExceptExpression expression);
Visit(System.Data.Common.CommandTrees.DbExpression expression)556         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbExpression expression);
Visit(System.Data.Common.CommandTrees.DbFilterExpression expression)557         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbFilterExpression expression);
Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression)558         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression);
Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression)559         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression);
Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression)560         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression)561         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression)562         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression)563         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression);
Visit(System.Data.Common.CommandTrees.DbJoinExpression expression)564         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression)565         public virtual TResultType Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLikeExpression expression)566         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbLikeExpression expression);
Visit(System.Data.Common.CommandTrees.DbLimitExpression expression)567         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbLimitExpression expression);
Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression)568         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression);
Visit(System.Data.Common.CommandTrees.DbNotExpression expression)569         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNotExpression expression);
Visit(System.Data.Common.CommandTrees.DbNullExpression expression)570         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression)571         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression);
Visit(System.Data.Common.CommandTrees.DbOrExpression expression)572         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbOrExpression expression);
Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression)573         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression);
Visit(System.Data.Common.CommandTrees.DbProjectExpression expression)574         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbProjectExpression expression);
Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression)575         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression);
Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression)576         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefExpression expression)577         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression)578         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression);
Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression)579         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression);
Visit(System.Data.Common.CommandTrees.DbScanExpression expression)580         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbScanExpression expression);
Visit(System.Data.Common.CommandTrees.DbSkipExpression expression)581         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbSkipExpression expression);
Visit(System.Data.Common.CommandTrees.DbSortExpression expression)582         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbSortExpression expression);
Visit(System.Data.Common.CommandTrees.DbTreatExpression expression)583         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbTreatExpression expression);
Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression)584         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression);
Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression)585         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression);
586     }
587     public sealed partial class DbFilterExpression : System.Data.Common.CommandTrees.DbExpression
588     {
DbFilterExpression()589         internal DbFilterExpression() { }
590         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
591         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)592         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)593         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
594     }
595     public sealed partial class DbFunctionAggregate : System.Data.Common.CommandTrees.DbAggregate
596     {
DbFunctionAggregate()597         internal DbFunctionAggregate() { }
598         public bool Distinct { get { throw null; } }
599         public System.Data.Metadata.Edm.EdmFunction Function { get { throw null; } }
600     }
601     public sealed partial class DbFunctionCommandTree : System.Data.Common.CommandTrees.DbCommandTree
602     {
DbFunctionCommandTree()603         internal DbFunctionCommandTree() { }
604         public System.Data.Metadata.Edm.EdmFunction EdmFunction { get { throw null; } }
605         public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
606     }
607     public sealed partial class DbFunctionExpression : System.Data.Common.CommandTrees.DbExpression
608     {
DbFunctionExpression()609         internal DbFunctionExpression() { }
610         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
611         public System.Data.Metadata.Edm.EdmFunction Function { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)612         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)613         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
614     }
615     public sealed partial class DbGroupAggregate : System.Data.Common.CommandTrees.DbAggregate
616     {
DbGroupAggregate()617         internal DbGroupAggregate() { }
618     }
619     public sealed partial class DbGroupByExpression : System.Data.Common.CommandTrees.DbExpression
620     {
DbGroupByExpression()621         internal DbGroupByExpression() { }
622         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbAggregate> Aggregates { get { throw null; } }
623         public System.Data.Common.CommandTrees.DbGroupExpressionBinding Input { get { throw null; } }
624         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Keys { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)625         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)626         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
627     }
628     public sealed partial class DbGroupExpressionBinding
629     {
DbGroupExpressionBinding()630         internal DbGroupExpressionBinding() { }
631         public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
632         public System.Data.Common.CommandTrees.DbGroupAggregate GroupAggregate { get { throw null; } }
633         public System.Data.Common.CommandTrees.DbVariableReferenceExpression GroupVariable { get { throw null; } }
634         public string GroupVariableName { get { throw null; } }
635         public System.Data.Metadata.Edm.TypeUsage GroupVariableType { get { throw null; } }
636         public System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable { get { throw null; } }
637         public string VariableName { get { throw null; } }
638         public System.Data.Metadata.Edm.TypeUsage VariableType { get { throw null; } }
639     }
640     public sealed partial class DbInsertCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
641     {
DbInsertCommandTree()642         internal DbInsertCommandTree() { }
643         public System.Data.Common.CommandTrees.DbExpression Returning { get { throw null; } }
644         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbModificationClause> SetClauses { get { throw null; } }
645     }
646     public sealed partial class DbIntersectExpression : System.Data.Common.CommandTrees.DbBinaryExpression
647     {
DbIntersectExpression()648         internal DbIntersectExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)649         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)650         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
651     }
652     public sealed partial class DbIsEmptyExpression : System.Data.Common.CommandTrees.DbUnaryExpression
653     {
DbIsEmptyExpression()654         internal DbIsEmptyExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)655         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)656         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
657     }
658     public sealed partial class DbIsNullExpression : System.Data.Common.CommandTrees.DbUnaryExpression
659     {
DbIsNullExpression()660         internal DbIsNullExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)661         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)662         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
663     }
664     public sealed partial class DbIsOfExpression : System.Data.Common.CommandTrees.DbUnaryExpression
665     {
DbIsOfExpression()666         internal DbIsOfExpression() { }
667         public System.Data.Metadata.Edm.TypeUsage OfType { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)668         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)669         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
670     }
671     public sealed partial class DbJoinExpression : System.Data.Common.CommandTrees.DbExpression
672     {
DbJoinExpression()673         internal DbJoinExpression() { }
674         public System.Data.Common.CommandTrees.DbExpression JoinCondition { get { throw null; } }
675         public System.Data.Common.CommandTrees.DbExpressionBinding Left { get { throw null; } }
676         public System.Data.Common.CommandTrees.DbExpressionBinding Right { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)677         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)678         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
679     }
680     public sealed partial class DbLambda
681     {
DbLambda()682         internal DbLambda() { }
683         public System.Data.Common.CommandTrees.DbExpression Body { get { throw null; } }
684         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbVariableReferenceExpression> Variables { get { throw null; } }
Create(System.Data.Common.CommandTrees.DbExpression body, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> variables)685         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Common.CommandTrees.DbExpression body, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> variables) { throw null; }
Create(System.Data.Common.CommandTrees.DbExpression body, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables)686         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Common.CommandTrees.DbExpression body, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Data.Metadata.Edm.TypeUsage argument15Type, System.Data.Metadata.Edm.TypeUsage argument16Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)687         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Data.Metadata.Edm.TypeUsage argument15Type, System.Data.Metadata.Edm.TypeUsage argument16Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Data.Metadata.Edm.TypeUsage argument15Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)688         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Data.Metadata.Edm.TypeUsage argument15Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)689         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Data.Metadata.Edm.TypeUsage argument14Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)690         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Data.Metadata.Edm.TypeUsage argument13Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)691         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Data.Metadata.Edm.TypeUsage argument12Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)692         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Data.Metadata.Edm.TypeUsage argument11Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)693         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Data.Metadata.Edm.TypeUsage argument10Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)694         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Data.Metadata.Edm.TypeUsage argument9Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)695         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Data.Metadata.Edm.TypeUsage argument8Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)696         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Data.Metadata.Edm.TypeUsage argument7Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)697         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Data.Metadata.Edm.TypeUsage argument6Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)698         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Data.Metadata.Edm.TypeUsage argument5Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)699         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Data.Metadata.Edm.TypeUsage argument4Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)700         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Data.Metadata.Edm.TypeUsage argument3Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)701         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Data.Metadata.Edm.TypeUsage argument2Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction)702         public static System.Data.Common.CommandTrees.DbLambda Create(System.Data.Metadata.Edm.TypeUsage argument1Type, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> lambdaFunction) { throw null; }
703     }
704     public sealed partial class DbLambdaExpression : System.Data.Common.CommandTrees.DbExpression
705     {
DbLambdaExpression()706         internal DbLambdaExpression() { }
707         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
708         public System.Data.Common.CommandTrees.DbLambda Lambda { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)709         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)710         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
711     }
712     public sealed partial class DbLikeExpression : System.Data.Common.CommandTrees.DbExpression
713     {
DbLikeExpression()714         internal DbLikeExpression() { }
715         public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
716         public System.Data.Common.CommandTrees.DbExpression Escape { get { throw null; } }
717         public System.Data.Common.CommandTrees.DbExpression Pattern { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)718         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)719         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
720     }
721     public sealed partial class DbLimitExpression : System.Data.Common.CommandTrees.DbExpression
722     {
DbLimitExpression()723         internal DbLimitExpression() { }
724         public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
725         public System.Data.Common.CommandTrees.DbExpression Limit { get { throw null; } }
726         public bool WithTies { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)727         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)728         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
729     }
730     public abstract partial class DbModificationClause
731     {
DbModificationClause()732         internal DbModificationClause() { }
733     }
734     public abstract partial class DbModificationCommandTree : System.Data.Common.CommandTrees.DbCommandTree
735     {
DbModificationCommandTree()736         internal DbModificationCommandTree() { }
737         public System.Data.Common.CommandTrees.DbExpressionBinding Target { get { throw null; } }
738     }
739     public sealed partial class DbNewInstanceExpression : System.Data.Common.CommandTrees.DbExpression
740     {
DbNewInstanceExpression()741         internal DbNewInstanceExpression() { }
742         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)743         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)744         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
745     }
746     public sealed partial class DbNotExpression : System.Data.Common.CommandTrees.DbUnaryExpression
747     {
DbNotExpression()748         internal DbNotExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)749         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)750         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
751     }
752     public sealed partial class DbNullExpression : System.Data.Common.CommandTrees.DbExpression
753     {
DbNullExpression()754         internal DbNullExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)755         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)756         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
757     }
758     public sealed partial class DbOfTypeExpression : System.Data.Common.CommandTrees.DbUnaryExpression
759     {
DbOfTypeExpression()760         internal DbOfTypeExpression() { }
761         public System.Data.Metadata.Edm.TypeUsage OfType { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)762         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)763         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
764     }
765     public sealed partial class DbOrExpression : System.Data.Common.CommandTrees.DbBinaryExpression
766     {
DbOrExpression()767         internal DbOrExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)768         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)769         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
770     }
771     public sealed partial class DbParameterReferenceExpression : System.Data.Common.CommandTrees.DbExpression
772     {
DbParameterReferenceExpression()773         internal DbParameterReferenceExpression() { }
774         public string ParameterName { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)775         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)776         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
777     }
778     public sealed partial class DbProjectExpression : System.Data.Common.CommandTrees.DbExpression
779     {
DbProjectExpression()780         internal DbProjectExpression() { }
781         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
782         public System.Data.Common.CommandTrees.DbExpression Projection { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)783         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)784         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
785     }
786     public sealed partial class DbPropertyExpression : System.Data.Common.CommandTrees.DbExpression
787     {
DbPropertyExpression()788         internal DbPropertyExpression() { }
789         public System.Data.Common.CommandTrees.DbExpression Instance { get { throw null; } }
790         public System.Data.Metadata.Edm.EdmMember Property { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)791         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)792         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
operator System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>(System.Data.Common.CommandTrees.DbPropertyExpression value)793         public static implicit operator System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> (System.Data.Common.CommandTrees.DbPropertyExpression value) { throw null; }
ToKeyValuePair()794         public System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> ToKeyValuePair() { throw null; }
795     }
796     public sealed partial class DbQuantifierExpression : System.Data.Common.CommandTrees.DbExpression
797     {
DbQuantifierExpression()798         internal DbQuantifierExpression() { }
799         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
800         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)801         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)802         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
803     }
804     public sealed partial class DbQueryCommandTree : System.Data.Common.CommandTrees.DbCommandTree
805     {
DbQueryCommandTree()806         internal DbQueryCommandTree() { }
807         public System.Data.Common.CommandTrees.DbExpression Query { get { throw null; } }
808     }
809     public sealed partial class DbRefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
810     {
DbRefExpression()811         internal DbRefExpression() { }
812         public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)813         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)814         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
815     }
816     public sealed partial class DbRefKeyExpression : System.Data.Common.CommandTrees.DbUnaryExpression
817     {
DbRefKeyExpression()818         internal DbRefKeyExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)819         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)820         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
821     }
822     public sealed partial class DbRelationshipNavigationExpression : System.Data.Common.CommandTrees.DbExpression
823     {
DbRelationshipNavigationExpression()824         internal DbRelationshipNavigationExpression() { }
825         public System.Data.Metadata.Edm.RelationshipEndMember NavigateFrom { get { throw null; } }
826         public System.Data.Metadata.Edm.RelationshipEndMember NavigateTo { get { throw null; } }
827         public System.Data.Common.CommandTrees.DbExpression NavigationSource { get { throw null; } }
828         public System.Data.Metadata.Edm.RelationshipType Relationship { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)829         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)830         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
831     }
832     public sealed partial class DbScanExpression : System.Data.Common.CommandTrees.DbExpression
833     {
DbScanExpression()834         internal DbScanExpression() { }
835         public System.Data.Metadata.Edm.EntitySetBase Target { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)836         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)837         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
838     }
839     public sealed partial class DbSetClause : System.Data.Common.CommandTrees.DbModificationClause
840     {
DbSetClause()841         internal DbSetClause() { }
842         public System.Data.Common.CommandTrees.DbExpression Property { get { throw null; } }
843         public System.Data.Common.CommandTrees.DbExpression Value { get { throw null; } }
844     }
845     public sealed partial class DbSkipExpression : System.Data.Common.CommandTrees.DbExpression
846     {
DbSkipExpression()847         internal DbSkipExpression() { }
848         public System.Data.Common.CommandTrees.DbExpression Count { get { throw null; } }
849         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
850         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> SortOrder { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)851         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)852         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
853     }
854     public sealed partial class DbSortClause
855     {
DbSortClause()856         internal DbSortClause() { }
857         public bool Ascending { get { throw null; } }
858         public string Collation { get { throw null; } }
859         public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
860     }
861     public sealed partial class DbSortExpression : System.Data.Common.CommandTrees.DbExpression
862     {
DbSortExpression()863         internal DbSortExpression() { }
864         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
865         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> SortOrder { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)866         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)867         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
868     }
869     public sealed partial class DbTreatExpression : System.Data.Common.CommandTrees.DbUnaryExpression
870     {
DbTreatExpression()871         internal DbTreatExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)872         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)873         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
874     }
875     public abstract partial class DbUnaryExpression : System.Data.Common.CommandTrees.DbExpression
876     {
DbUnaryExpression()877         internal DbUnaryExpression() { }
878         public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
879     }
880     public sealed partial class DbUnionAllExpression : System.Data.Common.CommandTrees.DbBinaryExpression
881     {
DbUnionAllExpression()882         internal DbUnionAllExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)883         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)884         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
885     }
886     public sealed partial class DbUpdateCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
887     {
DbUpdateCommandTree()888         internal DbUpdateCommandTree() { }
889         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
890         public System.Data.Common.CommandTrees.DbExpression Returning { get { throw null; } }
891         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbModificationClause> SetClauses { get { throw null; } }
892     }
893     public sealed partial class DbVariableReferenceExpression : System.Data.Common.CommandTrees.DbExpression
894     {
DbVariableReferenceExpression()895         internal DbVariableReferenceExpression() { }
896         public string VariableName { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)897         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)898         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
899     }
900     public partial class DefaultExpressionVisitor : System.Data.Common.CommandTrees.DbExpressionVisitor<System.Data.Common.CommandTrees.DbExpression>
901     {
DefaultExpressionVisitor()902         protected DefaultExpressionVisitor() { }
OnEnterScope(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> scopeVariables)903         protected virtual void OnEnterScope(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> scopeVariables) { }
OnExitScope()904         protected virtual void OnExitScope() { }
OnExpressionReplaced(System.Data.Common.CommandTrees.DbExpression oldExpression, System.Data.Common.CommandTrees.DbExpression newExpression)905         protected virtual void OnExpressionReplaced(System.Data.Common.CommandTrees.DbExpression oldExpression, System.Data.Common.CommandTrees.DbExpression newExpression) { }
OnVariableRebound(System.Data.Common.CommandTrees.DbVariableReferenceExpression fromVarRef, System.Data.Common.CommandTrees.DbVariableReferenceExpression toVarRef)906         protected virtual void OnVariableRebound(System.Data.Common.CommandTrees.DbVariableReferenceExpression fromVarRef, System.Data.Common.CommandTrees.DbVariableReferenceExpression toVarRef) { }
Visit(System.Data.Common.CommandTrees.DbAndExpression expression)907         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbAndExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbApplyExpression expression)908         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbApplyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression)909         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbCaseExpression expression)910         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCaseExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbCastExpression expression)911         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCastExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression)912         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbConstantExpression expression)913         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbConstantExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression)914         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbDerefExpression expression)915         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbDerefExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression)916         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbElementExpression expression)917         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbElementExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression)918         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbExceptExpression expression)919         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbExceptExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbExpression expression)920         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbFilterExpression expression)921         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbFilterExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression)922         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression)923         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression)924         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression)925         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression)926         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression)927         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbJoinExpression expression)928         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbJoinExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression)929         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLikeExpression expression)930         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLikeExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLimitExpression expression)931         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLimitExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression)932         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbNotExpression expression)933         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNotExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbNullExpression expression)934         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNullExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression)935         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbOrExpression expression)936         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbOrExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression)937         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbProjectExpression expression)938         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbProjectExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression)939         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression)940         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbRefExpression expression)941         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRefExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression)942         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression)943         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbScanExpression expression)944         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbScanExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbSkipExpression expression)945         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbSkipExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbSortExpression expression)946         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbSortExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbTreatExpression expression)947         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbTreatExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression)948         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression)949         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression) { throw null; }
VisitAggregate(System.Data.Common.CommandTrees.DbAggregate aggregate)950         protected virtual System.Data.Common.CommandTrees.DbAggregate VisitAggregate(System.Data.Common.CommandTrees.DbAggregate aggregate) { throw null; }
VisitEntitySet(System.Data.Metadata.Edm.EntitySetBase entitySet)951         protected virtual System.Data.Metadata.Edm.EntitySetBase VisitEntitySet(System.Data.Metadata.Edm.EntitySetBase entitySet) { throw null; }
VisitExpression(System.Data.Common.CommandTrees.DbExpression expression)952         protected virtual System.Data.Common.CommandTrees.DbExpression VisitExpression(System.Data.Common.CommandTrees.DbExpression expression) { throw null; }
VisitExpressionBinding(System.Data.Common.CommandTrees.DbExpressionBinding binding)953         protected virtual System.Data.Common.CommandTrees.DbExpressionBinding VisitExpressionBinding(System.Data.Common.CommandTrees.DbExpressionBinding binding) { throw null; }
VisitExpressionBindingList(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> list)954         protected virtual System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> VisitExpressionBindingList(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> list) { throw null; }
VisitExpressionList(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> list)955         protected virtual System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> VisitExpressionList(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> list) { throw null; }
VisitFunction(System.Data.Metadata.Edm.EdmFunction functionMetadata)956         protected virtual System.Data.Metadata.Edm.EdmFunction VisitFunction(System.Data.Metadata.Edm.EdmFunction functionMetadata) { throw null; }
VisitFunctionAggregate(System.Data.Common.CommandTrees.DbFunctionAggregate aggregate)957         protected virtual System.Data.Common.CommandTrees.DbFunctionAggregate VisitFunctionAggregate(System.Data.Common.CommandTrees.DbFunctionAggregate aggregate) { throw null; }
VisitGroupAggregate(System.Data.Common.CommandTrees.DbGroupAggregate aggregate)958         protected virtual System.Data.Common.CommandTrees.DbGroupAggregate VisitGroupAggregate(System.Data.Common.CommandTrees.DbGroupAggregate aggregate) { throw null; }
VisitGroupExpressionBinding(System.Data.Common.CommandTrees.DbGroupExpressionBinding binding)959         protected virtual System.Data.Common.CommandTrees.DbGroupExpressionBinding VisitGroupExpressionBinding(System.Data.Common.CommandTrees.DbGroupExpressionBinding binding) { throw null; }
VisitLambda(System.Data.Common.CommandTrees.DbLambda lambda)960         protected virtual System.Data.Common.CommandTrees.DbLambda VisitLambda(System.Data.Common.CommandTrees.DbLambda lambda) { throw null; }
VisitSortClause(System.Data.Common.CommandTrees.DbSortClause clause)961         protected virtual System.Data.Common.CommandTrees.DbSortClause VisitSortClause(System.Data.Common.CommandTrees.DbSortClause clause) { throw null; }
VisitSortOrder(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> sortOrder)962         protected virtual System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> VisitSortOrder(System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> sortOrder) { throw null; }
VisitType(System.Data.Metadata.Edm.EdmType type)963         protected virtual System.Data.Metadata.Edm.EdmType VisitType(System.Data.Metadata.Edm.EdmType type) { throw null; }
VisitTypeUsage(System.Data.Metadata.Edm.TypeUsage type)964         protected virtual System.Data.Metadata.Edm.TypeUsage VisitTypeUsage(System.Data.Metadata.Edm.TypeUsage type) { throw null; }
965     }
966 }
967 namespace System.Data.Common.CommandTrees.ExpressionBuilder
968 {
969     public static partial class DbExpressionBuilder
970     {
971         public static System.Data.Common.CommandTrees.DbConstantExpression False { get { throw null; } }
972         public static System.Data.Common.CommandTrees.DbConstantExpression True { get { throw null; } }
Aggregate(this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument)973         public static System.Data.Common.CommandTrees.DbFunctionAggregate Aggregate(this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
AggregateDistinct(this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument)974         public static System.Data.Common.CommandTrees.DbFunctionAggregate AggregateDistinct(this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
All(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate)975         public static System.Data.Common.CommandTrees.DbQuantifierExpression All(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate) { throw null; }
All(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate)976         public static System.Data.Common.CommandTrees.DbQuantifierExpression All(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate) { throw null; }
And(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)977         public static System.Data.Common.CommandTrees.DbAndExpression And(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Any(this System.Data.Common.CommandTrees.DbExpression source)978         public static System.Data.Common.CommandTrees.DbExpression Any(this System.Data.Common.CommandTrees.DbExpression source) { throw null; }
Any(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate)979         public static System.Data.Common.CommandTrees.DbQuantifierExpression Any(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate) { throw null; }
Any(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate)980         public static System.Data.Common.CommandTrees.DbQuantifierExpression Any(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate) { throw null; }
As(this System.Data.Common.CommandTrees.DbAggregate value, string alias)981         public static System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbAggregate> As(this System.Data.Common.CommandTrees.DbAggregate value, string alias) { throw null; }
As(this System.Data.Common.CommandTrees.DbExpression value, string alias)982         public static System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> As(this System.Data.Common.CommandTrees.DbExpression value, string alias) { throw null; }
Bind(this System.Data.Common.CommandTrees.DbExpression input)983         public static System.Data.Common.CommandTrees.DbExpressionBinding Bind(this System.Data.Common.CommandTrees.DbExpression input) { throw null; }
BindAs(this System.Data.Common.CommandTrees.DbExpression input, string varName)984         public static System.Data.Common.CommandTrees.DbExpressionBinding BindAs(this System.Data.Common.CommandTrees.DbExpression input, string varName) { throw null; }
Case(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> whenExpressions, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> thenExpressions, System.Data.Common.CommandTrees.DbExpression elseExpression)985         public static System.Data.Common.CommandTrees.DbCaseExpression Case(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> whenExpressions, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> thenExpressions, System.Data.Common.CommandTrees.DbExpression elseExpression) { throw null; }
CastTo(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage toType)986         public static System.Data.Common.CommandTrees.DbCastExpression CastTo(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage toType) { throw null; }
Constant(this System.Data.Metadata.Edm.TypeUsage constantType, object value)987         public static System.Data.Common.CommandTrees.DbConstantExpression Constant(this System.Data.Metadata.Edm.TypeUsage constantType, object value) { throw null; }
Constant(object value)988         public static System.Data.Common.CommandTrees.DbConstantExpression Constant(object value) { throw null; }
CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> keyValues)989         public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> keyValues) { throw null; }
CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, params System.Data.Common.CommandTrees.DbExpression[] keyValues)990         public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, params System.Data.Common.CommandTrees.DbExpression[] keyValues) { throw null; }
CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Metadata.Edm.EntityType entityType, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> keyValues)991         public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Metadata.Edm.EntityType entityType, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> keyValues) { throw null; }
CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Metadata.Edm.EntityType entityType, params System.Data.Common.CommandTrees.DbExpression[] keyValues)992         public static System.Data.Common.CommandTrees.DbRefExpression CreateRef(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Metadata.Edm.EntityType entityType, params System.Data.Common.CommandTrees.DbExpression[] keyValues) { throw null; }
CrossApply(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> apply)993         public static System.Data.Common.CommandTrees.DbApplyExpression CrossApply(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> apply) { throw null; }
CrossApply(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply)994         public static System.Data.Common.CommandTrees.DbApplyExpression CrossApply(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply) { throw null; }
CrossJoin(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpressionBinding> inputs)995         public static System.Data.Common.CommandTrees.DbCrossJoinExpression CrossJoin(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpressionBinding> inputs) { throw null; }
Deref(this System.Data.Common.CommandTrees.DbExpression argument)996         public static System.Data.Common.CommandTrees.DbDerefExpression Deref(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
Distinct(this System.Data.Common.CommandTrees.DbExpression argument)997         public static System.Data.Common.CommandTrees.DbDistinctExpression Distinct(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
Divide(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)998         public static System.Data.Common.CommandTrees.DbArithmeticExpression Divide(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Element(this System.Data.Common.CommandTrees.DbExpression argument)999         public static System.Data.Common.CommandTrees.DbElementExpression Element(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
Equal(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1000         public static System.Data.Common.CommandTrees.DbComparisonExpression Equal(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Except(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1001         public static System.Data.Common.CommandTrees.DbExceptExpression Except(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Exists(this System.Data.Common.CommandTrees.DbExpression argument)1002         public static System.Data.Common.CommandTrees.DbExpression Exists(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
Filter(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate)1003         public static System.Data.Common.CommandTrees.DbFilterExpression Filter(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression predicate) { throw null; }
FullOuterJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition)1004         public static System.Data.Common.CommandTrees.DbJoinExpression FullOuterJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition) { throw null; }
FullOuterJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition)1005         public static System.Data.Common.CommandTrees.DbJoinExpression FullOuterJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition) { throw null; }
GetEntityRef(this System.Data.Common.CommandTrees.DbExpression argument)1006         public static System.Data.Common.CommandTrees.DbEntityRefExpression GetEntityRef(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
GetRefKey(this System.Data.Common.CommandTrees.DbExpression argument)1007         public static System.Data.Common.CommandTrees.DbRefKeyExpression GetRefKey(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
GreaterThan(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1008         public static System.Data.Common.CommandTrees.DbComparisonExpression GreaterThan(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
GreaterThanOrEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1009         public static System.Data.Common.CommandTrees.DbComparisonExpression GreaterThanOrEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
GroupBind(this System.Data.Common.CommandTrees.DbExpression input)1010         public static System.Data.Common.CommandTrees.DbGroupExpressionBinding GroupBind(this System.Data.Common.CommandTrees.DbExpression input) { throw null; }
GroupBindAs(this System.Data.Common.CommandTrees.DbExpression input, string varName, string groupVarName)1011         public static System.Data.Common.CommandTrees.DbGroupExpressionBinding GroupBindAs(this System.Data.Common.CommandTrees.DbExpression input, string varName, string groupVarName) { throw null; }
GroupBy(this System.Data.Common.CommandTrees.DbGroupExpressionBinding input, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> keys, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbAggregate>> aggregates)1012         public static System.Data.Common.CommandTrees.DbGroupByExpression GroupBy(this System.Data.Common.CommandTrees.DbGroupExpressionBinding input, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> keys, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbAggregate>> aggregates) { throw null; }
InnerJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition)1013         public static System.Data.Common.CommandTrees.DbJoinExpression InnerJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition) { throw null; }
InnerJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition)1014         public static System.Data.Common.CommandTrees.DbJoinExpression InnerJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition) { throw null; }
Intersect(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1015         public static System.Data.Common.CommandTrees.DbIntersectExpression Intersect(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Invoke(this System.Data.Common.CommandTrees.DbLambda lambda, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments)1016         public static System.Data.Common.CommandTrees.DbLambdaExpression Invoke(this System.Data.Common.CommandTrees.DbLambda lambda, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments) { throw null; }
Invoke(this System.Data.Common.CommandTrees.DbLambda lambda, params System.Data.Common.CommandTrees.DbExpression[] arguments)1017         public static System.Data.Common.CommandTrees.DbLambdaExpression Invoke(this System.Data.Common.CommandTrees.DbLambda lambda, params System.Data.Common.CommandTrees.DbExpression[] arguments) { throw null; }
Invoke(this System.Data.Metadata.Edm.EdmFunction function, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments)1018         public static System.Data.Common.CommandTrees.DbFunctionExpression Invoke(this System.Data.Metadata.Edm.EdmFunction function, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments) { throw null; }
Invoke(this System.Data.Metadata.Edm.EdmFunction function, params System.Data.Common.CommandTrees.DbExpression[] arguments)1019         public static System.Data.Common.CommandTrees.DbFunctionExpression Invoke(this System.Data.Metadata.Edm.EdmFunction function, params System.Data.Common.CommandTrees.DbExpression[] arguments) { throw null; }
IsEmpty(this System.Data.Common.CommandTrees.DbExpression argument)1020         public static System.Data.Common.CommandTrees.DbIsEmptyExpression IsEmpty(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
IsNull(this System.Data.Common.CommandTrees.DbExpression argument)1021         public static System.Data.Common.CommandTrees.DbIsNullExpression IsNull(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
IsOf(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type)1022         public static System.Data.Common.CommandTrees.DbIsOfExpression IsOf(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
IsOfOnly(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type)1023         public static System.Data.Common.CommandTrees.DbIsOfExpression IsOfOnly(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
Join(this System.Data.Common.CommandTrees.DbExpression outer, System.Data.Common.CommandTrees.DbExpression inner, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> outerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> innerKey)1024         public static System.Data.Common.CommandTrees.DbJoinExpression Join(this System.Data.Common.CommandTrees.DbExpression outer, System.Data.Common.CommandTrees.DbExpression inner, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> outerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> innerKey) { throw null; }
Join(this System.Data.Common.CommandTrees.DbExpression outer, System.Data.Common.CommandTrees.DbExpression inner, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> outerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> innerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, TSelector> selector)1025         public static System.Data.Common.CommandTrees.DbProjectExpression Join<TSelector>(this System.Data.Common.CommandTrees.DbExpression outer, System.Data.Common.CommandTrees.DbExpression inner, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> outerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> innerKey, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, TSelector> selector) { throw null; }
Lambda(System.Data.Common.CommandTrees.DbExpression body, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> variables)1026         public static System.Data.Common.CommandTrees.DbLambda Lambda(System.Data.Common.CommandTrees.DbExpression body, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> variables) { throw null; }
Lambda(System.Data.Common.CommandTrees.DbExpression body, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables)1027         public static System.Data.Common.CommandTrees.DbLambda Lambda(System.Data.Common.CommandTrees.DbExpression body, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables) { throw null; }
LeftOuterJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition)1028         public static System.Data.Common.CommandTrees.DbJoinExpression LeftOuterJoin(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> joinCondition) { throw null; }
LeftOuterJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition)1029         public static System.Data.Common.CommandTrees.DbJoinExpression LeftOuterJoin(this System.Data.Common.CommandTrees.DbExpressionBinding left, System.Data.Common.CommandTrees.DbExpressionBinding right, System.Data.Common.CommandTrees.DbExpression joinCondition) { throw null; }
LessThan(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1030         public static System.Data.Common.CommandTrees.DbComparisonExpression LessThan(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
LessThanOrEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1031         public static System.Data.Common.CommandTrees.DbComparisonExpression LessThanOrEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Like(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression pattern)1032         public static System.Data.Common.CommandTrees.DbLikeExpression Like(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression pattern) { throw null; }
Like(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression pattern, System.Data.Common.CommandTrees.DbExpression escape)1033         public static System.Data.Common.CommandTrees.DbLikeExpression Like(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression pattern, System.Data.Common.CommandTrees.DbExpression escape) { throw null; }
Limit(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression count)1034         public static System.Data.Common.CommandTrees.DbLimitExpression Limit(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
Minus(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1035         public static System.Data.Common.CommandTrees.DbArithmeticExpression Minus(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Modulo(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1036         public static System.Data.Common.CommandTrees.DbArithmeticExpression Modulo(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Multiply(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1037         public static System.Data.Common.CommandTrees.DbArithmeticExpression Multiply(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Navigate(this System.Data.Common.CommandTrees.DbExpression navigateFrom, System.Data.Metadata.Edm.RelationshipEndMember fromEnd, System.Data.Metadata.Edm.RelationshipEndMember toEnd)1038         public static System.Data.Common.CommandTrees.DbRelationshipNavigationExpression Navigate(this System.Data.Common.CommandTrees.DbExpression navigateFrom, System.Data.Metadata.Edm.RelationshipEndMember fromEnd, System.Data.Metadata.Edm.RelationshipEndMember toEnd) { throw null; }
Navigate(this System.Data.Metadata.Edm.RelationshipType type, string fromEndName, string toEndName, System.Data.Common.CommandTrees.DbExpression navigateFrom)1039         public static System.Data.Common.CommandTrees.DbRelationshipNavigationExpression Navigate(this System.Data.Metadata.Edm.RelationshipType type, string fromEndName, string toEndName, System.Data.Common.CommandTrees.DbExpression navigateFrom) { throw null; }
Negate(this System.Data.Common.CommandTrees.DbExpression argument)1040         public static System.Data.Common.CommandTrees.DbArithmeticExpression Negate(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
New(this System.Data.Metadata.Edm.TypeUsage instanceType, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments)1041         public static System.Data.Common.CommandTrees.DbNewInstanceExpression New(this System.Data.Metadata.Edm.TypeUsage instanceType, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> arguments) { throw null; }
New(this System.Data.Metadata.Edm.TypeUsage instanceType, params System.Data.Common.CommandTrees.DbExpression[] arguments)1042         public static System.Data.Common.CommandTrees.DbNewInstanceExpression New(this System.Data.Metadata.Edm.TypeUsage instanceType, params System.Data.Common.CommandTrees.DbExpression[] arguments) { throw null; }
NewCollection(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> elements)1043         public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewCollection(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbExpression> elements) { throw null; }
NewCollection(params System.Data.Common.CommandTrees.DbExpression[] elements)1044         public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewCollection(params System.Data.Common.CommandTrees.DbExpression[] elements) { throw null; }
NewEmptyCollection(this System.Data.Metadata.Edm.TypeUsage collectionType)1045         public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewEmptyCollection(this System.Data.Metadata.Edm.TypeUsage collectionType) { throw null; }
NewRow(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> columnValues)1046         public static System.Data.Common.CommandTrees.DbNewInstanceExpression NewRow(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> columnValues) { throw null; }
Not(this System.Data.Common.CommandTrees.DbExpression argument)1047         public static System.Data.Common.CommandTrees.DbNotExpression Not(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
NotEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1048         public static System.Data.Common.CommandTrees.DbComparisonExpression NotEqual(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Null(this System.Data.Metadata.Edm.TypeUsage nullType)1049         public static System.Data.Common.CommandTrees.DbNullExpression Null(this System.Data.Metadata.Edm.TypeUsage nullType) { throw null; }
OfType(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type)1050         public static System.Data.Common.CommandTrees.DbOfTypeExpression OfType(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
OfTypeOnly(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type)1051         public static System.Data.Common.CommandTrees.DbOfTypeExpression OfTypeOnly(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage type) { throw null; }
Or(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1052         public static System.Data.Common.CommandTrees.DbOrExpression Or(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
OrderBy(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey)1053         public static System.Data.Common.CommandTrees.DbSortExpression OrderBy(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
OrderBy(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation)1054         public static System.Data.Common.CommandTrees.DbSortExpression OrderBy(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
OrderByDescending(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey)1055         public static System.Data.Common.CommandTrees.DbSortExpression OrderByDescending(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
OrderByDescending(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation)1056         public static System.Data.Common.CommandTrees.DbSortExpression OrderByDescending(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
OuterApply(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> apply)1057         public static System.Data.Common.CommandTrees.DbApplyExpression OuterApply(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> apply) { throw null; }
OuterApply(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply)1058         public static System.Data.Common.CommandTrees.DbApplyExpression OuterApply(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply) { throw null; }
Parameter(this System.Data.Metadata.Edm.TypeUsage type, string name)1059         public static System.Data.Common.CommandTrees.DbParameterReferenceExpression Parameter(this System.Data.Metadata.Edm.TypeUsage type, string name) { throw null; }
Plus(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1060         public static System.Data.Common.CommandTrees.DbArithmeticExpression Plus(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Project(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression projection)1061         public static System.Data.Common.CommandTrees.DbProjectExpression Project(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpression projection) { throw null; }
Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.EdmProperty propertyMetadata)1062         public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.EdmProperty propertyMetadata) { throw null; }
Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.NavigationProperty navigationProperty)1063         public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.NavigationProperty navigationProperty) { throw null; }
Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.RelationshipEndMember relationshipEnd)1064         public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, System.Data.Metadata.Edm.RelationshipEndMember relationshipEnd) { throw null; }
Property(this System.Data.Common.CommandTrees.DbExpression instance, string propertyName)1065         public static System.Data.Common.CommandTrees.DbPropertyExpression Property(this System.Data.Common.CommandTrees.DbExpression instance, string propertyName) { throw null; }
RefFromKey(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Common.CommandTrees.DbExpression keyRow)1066         public static System.Data.Common.CommandTrees.DbRefExpression RefFromKey(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Common.CommandTrees.DbExpression keyRow) { throw null; }
RefFromKey(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Common.CommandTrees.DbExpression keyRow, System.Data.Metadata.Edm.EntityType entityType)1067         public static System.Data.Common.CommandTrees.DbRefExpression RefFromKey(this System.Data.Metadata.Edm.EntitySet entitySet, System.Data.Common.CommandTrees.DbExpression keyRow, System.Data.Metadata.Edm.EntityType entityType) { throw null; }
Scan(this System.Data.Metadata.Edm.EntitySetBase targetSet)1068         public static System.Data.Common.CommandTrees.DbScanExpression Scan(this System.Data.Metadata.Edm.EntitySetBase targetSet) { throw null; }
SelectMany(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> apply)1069         public static System.Data.Common.CommandTrees.DbProjectExpression SelectMany(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> apply) { throw null; }
SelectMany(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> apply, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, TSelector> selector)1070         public static System.Data.Common.CommandTrees.DbProjectExpression SelectMany<TSelector>(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> apply, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression, TSelector> selector) { throw null; }
Select(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, TProjection> projection)1071         public static System.Data.Common.CommandTrees.DbProjectExpression Select<TProjection>(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, TProjection> projection) { throw null; }
Skip(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbSortClause> sortOrder, System.Data.Common.CommandTrees.DbExpression count)1072         public static System.Data.Common.CommandTrees.DbSkipExpression Skip(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbSortClause> sortOrder, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
Skip(this System.Data.Common.CommandTrees.DbSortExpression argument, System.Data.Common.CommandTrees.DbExpression count)1073         public static System.Data.Common.CommandTrees.DbSkipExpression Skip(this System.Data.Common.CommandTrees.DbSortExpression argument, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
Sort(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbSortClause> sortOrder)1074         public static System.Data.Common.CommandTrees.DbSortExpression Sort(this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbSortClause> sortOrder) { throw null; }
Take(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression count)1075         public static System.Data.Common.CommandTrees.DbLimitExpression Take(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Common.CommandTrees.DbExpression count) { throw null; }
ThenBy(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey)1076         public static System.Data.Common.CommandTrees.DbSortExpression ThenBy(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
ThenBy(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation)1077         public static System.Data.Common.CommandTrees.DbSortExpression ThenBy(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
ThenByDescending(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey)1078         public static System.Data.Common.CommandTrees.DbSortExpression ThenByDescending(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey) { throw null; }
ThenByDescending(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation)1079         public static System.Data.Common.CommandTrees.DbSortExpression ThenByDescending(this System.Data.Common.CommandTrees.DbSortExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> sortKey, string collation) { throw null; }
ToSortClause(this System.Data.Common.CommandTrees.DbExpression key)1080         public static System.Data.Common.CommandTrees.DbSortClause ToSortClause(this System.Data.Common.CommandTrees.DbExpression key) { throw null; }
ToSortClause(this System.Data.Common.CommandTrees.DbExpression key, string collation)1081         public static System.Data.Common.CommandTrees.DbSortClause ToSortClause(this System.Data.Common.CommandTrees.DbExpression key, string collation) { throw null; }
ToSortClauseDescending(this System.Data.Common.CommandTrees.DbExpression key)1082         public static System.Data.Common.CommandTrees.DbSortClause ToSortClauseDescending(this System.Data.Common.CommandTrees.DbExpression key) { throw null; }
ToSortClauseDescending(this System.Data.Common.CommandTrees.DbExpression key, string collation)1083         public static System.Data.Common.CommandTrees.DbSortClause ToSortClauseDescending(this System.Data.Common.CommandTrees.DbExpression key, string collation) { throw null; }
TreatAs(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage treatType)1084         public static System.Data.Common.CommandTrees.DbTreatExpression TreatAs(this System.Data.Common.CommandTrees.DbExpression argument, System.Data.Metadata.Edm.TypeUsage treatType) { throw null; }
UnaryMinus(this System.Data.Common.CommandTrees.DbExpression argument)1085         public static System.Data.Common.CommandTrees.DbArithmeticExpression UnaryMinus(this System.Data.Common.CommandTrees.DbExpression argument) { throw null; }
Union(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1086         public static System.Data.Common.CommandTrees.DbExpression Union(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
UnionAll(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right)1087         public static System.Data.Common.CommandTrees.DbUnionAllExpression UnionAll(this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right) { throw null; }
Variable(this System.Data.Metadata.Edm.TypeUsage type, string name)1088         public static System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable(this System.Data.Metadata.Edm.TypeUsage type, string name) { throw null; }
Where(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate)1089         public static System.Data.Common.CommandTrees.DbFilterExpression Where(this System.Data.Common.CommandTrees.DbExpression source, System.Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> predicate) { throw null; }
1090     }
1091     public static partial class EdmFunctions
1092     {
Abs(this System.Data.Common.CommandTrees.DbExpression value)1093         public static System.Data.Common.CommandTrees.DbFunctionExpression Abs(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
AddDays(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue)1094         public static System.Data.Common.CommandTrees.DbFunctionExpression AddDays(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddHours(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue)1095         public static System.Data.Common.CommandTrees.DbFunctionExpression AddHours(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddMicroseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue)1096         public static System.Data.Common.CommandTrees.DbFunctionExpression AddMicroseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddMilliseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue)1097         public static System.Data.Common.CommandTrees.DbFunctionExpression AddMilliseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddMinutes(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue)1098         public static System.Data.Common.CommandTrees.DbFunctionExpression AddMinutes(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddMonths(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue)1099         public static System.Data.Common.CommandTrees.DbFunctionExpression AddMonths(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddNanoseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue)1100         public static System.Data.Common.CommandTrees.DbFunctionExpression AddNanoseconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddSeconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue)1101         public static System.Data.Common.CommandTrees.DbFunctionExpression AddSeconds(this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
AddYears(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue)1102         public static System.Data.Common.CommandTrees.DbFunctionExpression AddYears(this System.Data.Common.CommandTrees.DbExpression dateValue, System.Data.Common.CommandTrees.DbExpression addValue) { throw null; }
Average(this System.Data.Common.CommandTrees.DbExpression collection)1103         public static System.Data.Common.CommandTrees.DbFunctionExpression Average(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
BitwiseAnd(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2)1104         public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseAnd(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2) { throw null; }
BitwiseNot(this System.Data.Common.CommandTrees.DbExpression value)1105         public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseNot(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
BitwiseOr(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2)1106         public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseOr(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2) { throw null; }
BitwiseXor(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2)1107         public static System.Data.Common.CommandTrees.DbFunctionExpression BitwiseXor(this System.Data.Common.CommandTrees.DbExpression value1, System.Data.Common.CommandTrees.DbExpression value2) { throw null; }
Ceiling(this System.Data.Common.CommandTrees.DbExpression value)1108         public static System.Data.Common.CommandTrees.DbFunctionExpression Ceiling(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
Concat(this System.Data.Common.CommandTrees.DbExpression string1, System.Data.Common.CommandTrees.DbExpression string2)1109         public static System.Data.Common.CommandTrees.DbFunctionExpression Concat(this System.Data.Common.CommandTrees.DbExpression string1, System.Data.Common.CommandTrees.DbExpression string2) { throw null; }
Contains(this System.Data.Common.CommandTrees.DbExpression searchedString, System.Data.Common.CommandTrees.DbExpression searchedForString)1110         public static System.Data.Common.CommandTrees.DbExpression Contains(this System.Data.Common.CommandTrees.DbExpression searchedString, System.Data.Common.CommandTrees.DbExpression searchedForString) { throw null; }
Count(this System.Data.Common.CommandTrees.DbExpression collection)1111         public static System.Data.Common.CommandTrees.DbFunctionExpression Count(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
CreateDateTime(System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second)1112         public static System.Data.Common.CommandTrees.DbFunctionExpression CreateDateTime(System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second) { throw null; }
CreateDateTimeOffset(System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second, System.Data.Common.CommandTrees.DbExpression timeZoneOffset)1113         public static System.Data.Common.CommandTrees.DbFunctionExpression CreateDateTimeOffset(System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second, System.Data.Common.CommandTrees.DbExpression timeZoneOffset) { throw null; }
CreateTime(System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second)1114         public static System.Data.Common.CommandTrees.DbFunctionExpression CreateTime(System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second) { throw null; }
CurrentDateTime()1115         public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentDateTime() { throw null; }
CurrentDateTimeOffset()1116         public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentDateTimeOffset() { throw null; }
CurrentUtcDateTime()1117         public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentUtcDateTime() { throw null; }
Day(this System.Data.Common.CommandTrees.DbExpression dateValue)1118         public static System.Data.Common.CommandTrees.DbFunctionExpression Day(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
DayOfYear(this System.Data.Common.CommandTrees.DbExpression dateValue)1119         public static System.Data.Common.CommandTrees.DbFunctionExpression DayOfYear(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
DiffDays(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2)1120         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffDays(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2) { throw null; }
DiffHours(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2)1121         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffHours(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
DiffMicroseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2)1122         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMicroseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
DiffMilliseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2)1123         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMilliseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
DiffMinutes(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2)1124         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMinutes(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
DiffMonths(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2)1125         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMonths(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2) { throw null; }
DiffNanoseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2)1126         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffNanoseconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
DiffSeconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2)1127         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffSeconds(this System.Data.Common.CommandTrees.DbExpression timeValue1, System.Data.Common.CommandTrees.DbExpression timeValue2) { throw null; }
DiffYears(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2)1128         public static System.Data.Common.CommandTrees.DbFunctionExpression DiffYears(this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2) { throw null; }
EndsWith(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression suffix)1129         public static System.Data.Common.CommandTrees.DbFunctionExpression EndsWith(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression suffix) { throw null; }
Floor(this System.Data.Common.CommandTrees.DbExpression value)1130         public static System.Data.Common.CommandTrees.DbFunctionExpression Floor(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
GetTotalOffsetMinutes(this System.Data.Common.CommandTrees.DbExpression dateTimeOffsetArgument)1131         public static System.Data.Common.CommandTrees.DbFunctionExpression GetTotalOffsetMinutes(this System.Data.Common.CommandTrees.DbExpression dateTimeOffsetArgument) { throw null; }
Hour(this System.Data.Common.CommandTrees.DbExpression timeValue)1132         public static System.Data.Common.CommandTrees.DbFunctionExpression Hour(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
IndexOf(this System.Data.Common.CommandTrees.DbExpression searchString, System.Data.Common.CommandTrees.DbExpression stringToFind)1133         public static System.Data.Common.CommandTrees.DbFunctionExpression IndexOf(this System.Data.Common.CommandTrees.DbExpression searchString, System.Data.Common.CommandTrees.DbExpression stringToFind) { throw null; }
Left(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression length)1134         public static System.Data.Common.CommandTrees.DbFunctionExpression Left(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression length) { throw null; }
Length(this System.Data.Common.CommandTrees.DbExpression stringArgument)1135         public static System.Data.Common.CommandTrees.DbFunctionExpression Length(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
LongCount(this System.Data.Common.CommandTrees.DbExpression collection)1136         public static System.Data.Common.CommandTrees.DbFunctionExpression LongCount(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
Max(this System.Data.Common.CommandTrees.DbExpression collection)1137         public static System.Data.Common.CommandTrees.DbFunctionExpression Max(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
Millisecond(this System.Data.Common.CommandTrees.DbExpression timeValue)1138         public static System.Data.Common.CommandTrees.DbFunctionExpression Millisecond(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
Min(this System.Data.Common.CommandTrees.DbExpression collection)1139         public static System.Data.Common.CommandTrees.DbFunctionExpression Min(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
Minute(this System.Data.Common.CommandTrees.DbExpression timeValue)1140         public static System.Data.Common.CommandTrees.DbFunctionExpression Minute(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
Month(this System.Data.Common.CommandTrees.DbExpression dateValue)1141         public static System.Data.Common.CommandTrees.DbFunctionExpression Month(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
NewGuid()1142         public static System.Data.Common.CommandTrees.DbFunctionExpression NewGuid() { throw null; }
Power(this System.Data.Common.CommandTrees.DbExpression baseArgument, System.Data.Common.CommandTrees.DbExpression exponent)1143         public static System.Data.Common.CommandTrees.DbFunctionExpression Power(this System.Data.Common.CommandTrees.DbExpression baseArgument, System.Data.Common.CommandTrees.DbExpression exponent) { throw null; }
Replace(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression toReplace, System.Data.Common.CommandTrees.DbExpression replacement)1144         public static System.Data.Common.CommandTrees.DbFunctionExpression Replace(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression toReplace, System.Data.Common.CommandTrees.DbExpression replacement) { throw null; }
Reverse(this System.Data.Common.CommandTrees.DbExpression stringArgument)1145         public static System.Data.Common.CommandTrees.DbFunctionExpression Reverse(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
Right(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression length)1146         public static System.Data.Common.CommandTrees.DbFunctionExpression Right(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression length) { throw null; }
Round(this System.Data.Common.CommandTrees.DbExpression value)1147         public static System.Data.Common.CommandTrees.DbFunctionExpression Round(this System.Data.Common.CommandTrees.DbExpression value) { throw null; }
Round(this System.Data.Common.CommandTrees.DbExpression value, System.Data.Common.CommandTrees.DbExpression digits)1148         public static System.Data.Common.CommandTrees.DbFunctionExpression Round(this System.Data.Common.CommandTrees.DbExpression value, System.Data.Common.CommandTrees.DbExpression digits) { throw null; }
Second(this System.Data.Common.CommandTrees.DbExpression timeValue)1149         public static System.Data.Common.CommandTrees.DbFunctionExpression Second(this System.Data.Common.CommandTrees.DbExpression timeValue) { throw null; }
StartsWith(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression prefix)1150         public static System.Data.Common.CommandTrees.DbFunctionExpression StartsWith(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression prefix) { throw null; }
StDev(this System.Data.Common.CommandTrees.DbExpression collection)1151         public static System.Data.Common.CommandTrees.DbFunctionExpression StDev(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
StDevP(this System.Data.Common.CommandTrees.DbExpression collection)1152         public static System.Data.Common.CommandTrees.DbFunctionExpression StDevP(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
Substring(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression start, System.Data.Common.CommandTrees.DbExpression length)1153         public static System.Data.Common.CommandTrees.DbFunctionExpression Substring(this System.Data.Common.CommandTrees.DbExpression stringArgument, System.Data.Common.CommandTrees.DbExpression start, System.Data.Common.CommandTrees.DbExpression length) { throw null; }
Sum(this System.Data.Common.CommandTrees.DbExpression collection)1154         public static System.Data.Common.CommandTrees.DbFunctionExpression Sum(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
ToLower(this System.Data.Common.CommandTrees.DbExpression stringArgument)1155         public static System.Data.Common.CommandTrees.DbFunctionExpression ToLower(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
ToUpper(this System.Data.Common.CommandTrees.DbExpression stringArgument)1156         public static System.Data.Common.CommandTrees.DbFunctionExpression ToUpper(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
Trim(this System.Data.Common.CommandTrees.DbExpression stringArgument)1157         public static System.Data.Common.CommandTrees.DbFunctionExpression Trim(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
TrimEnd(this System.Data.Common.CommandTrees.DbExpression stringArgument)1158         public static System.Data.Common.CommandTrees.DbFunctionExpression TrimEnd(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
TrimStart(this System.Data.Common.CommandTrees.DbExpression stringArgument)1159         public static System.Data.Common.CommandTrees.DbFunctionExpression TrimStart(this System.Data.Common.CommandTrees.DbExpression stringArgument) { throw null; }
Truncate(this System.Data.Common.CommandTrees.DbExpression value, System.Data.Common.CommandTrees.DbExpression digits)1160         public static System.Data.Common.CommandTrees.DbFunctionExpression Truncate(this System.Data.Common.CommandTrees.DbExpression value, System.Data.Common.CommandTrees.DbExpression digits) { throw null; }
TruncateTime(this System.Data.Common.CommandTrees.DbExpression dateValue)1161         public static System.Data.Common.CommandTrees.DbFunctionExpression TruncateTime(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
Var(this System.Data.Common.CommandTrees.DbExpression collection)1162         public static System.Data.Common.CommandTrees.DbFunctionExpression Var(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
VarP(this System.Data.Common.CommandTrees.DbExpression collection)1163         public static System.Data.Common.CommandTrees.DbFunctionExpression VarP(this System.Data.Common.CommandTrees.DbExpression collection) { throw null; }
Year(this System.Data.Common.CommandTrees.DbExpression dateValue)1164         public static System.Data.Common.CommandTrees.DbFunctionExpression Year(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
1165     }
1166     public sealed partial class Row
1167     {
Row(System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> columnValue, params System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>[] columnValues)1168         public Row(System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> columnValue, params System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>[] columnValues) { }
operator System.Data.Common.CommandTrees.DbExpression(System.Data.Common.CommandTrees.ExpressionBuilder.Row row)1169         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Data.Common.CommandTrees.ExpressionBuilder.Row row) { throw null; }
ToExpression()1170         public System.Data.Common.CommandTrees.DbNewInstanceExpression ToExpression() { throw null; }
1171     }
1172 }
1173 namespace System.Data.Common.CommandTrees.ExpressionBuilder.Spatial
1174 {
1175     public static partial class SpatialEdmFunctions
1176     {
Area(this System.Data.Common.CommandTrees.DbExpression spatialValue)1177         public static System.Data.Common.CommandTrees.DbFunctionExpression Area(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
AsBinary(this System.Data.Common.CommandTrees.DbExpression spatialValue)1178         public static System.Data.Common.CommandTrees.DbFunctionExpression AsBinary(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
AsGml(this System.Data.Common.CommandTrees.DbExpression spatialValue)1179         public static System.Data.Common.CommandTrees.DbFunctionExpression AsGml(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
AsText(this System.Data.Common.CommandTrees.DbExpression spatialValue)1180         public static System.Data.Common.CommandTrees.DbFunctionExpression AsText(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
Centroid(this System.Data.Common.CommandTrees.DbExpression geometryValue)1181         public static System.Data.Common.CommandTrees.DbFunctionExpression Centroid(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
CoordinateSystemId(this System.Data.Common.CommandTrees.DbExpression spatialValue)1182         public static System.Data.Common.CommandTrees.DbFunctionExpression CoordinateSystemId(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
Distance(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1183         public static System.Data.Common.CommandTrees.DbFunctionExpression Distance(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
Elevation(this System.Data.Common.CommandTrees.DbExpression spatialValue)1184         public static System.Data.Common.CommandTrees.DbFunctionExpression Elevation(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
EndPoint(this System.Data.Common.CommandTrees.DbExpression spatialValue)1185         public static System.Data.Common.CommandTrees.DbFunctionExpression EndPoint(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
ExteriorRing(this System.Data.Common.CommandTrees.DbExpression geometryValue)1186         public static System.Data.Common.CommandTrees.DbFunctionExpression ExteriorRing(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
GeographyCollectionFromBinary(System.Data.Common.CommandTrees.DbExpression geographyCollectionWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1187         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyCollectionFromBinary(System.Data.Common.CommandTrees.DbExpression geographyCollectionWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyCollectionFromText(System.Data.Common.CommandTrees.DbExpression geographyCollectionWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1188         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyCollectionFromText(System.Data.Common.CommandTrees.DbExpression geographyCollectionWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue)1189         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue) { throw null; }
GeographyFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1190         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyFromGml(System.Data.Common.CommandTrees.DbExpression geographyMarkup)1191         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromGml(System.Data.Common.CommandTrees.DbExpression geographyMarkup) { throw null; }
GeographyFromGml(System.Data.Common.CommandTrees.DbExpression geographyMarkup, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1192         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromGml(System.Data.Common.CommandTrees.DbExpression geographyMarkup, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText)1193         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText) { throw null; }
GeographyFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1194         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyLineFromBinary(System.Data.Common.CommandTrees.DbExpression lineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1195         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyLineFromBinary(System.Data.Common.CommandTrees.DbExpression lineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyLineFromText(System.Data.Common.CommandTrees.DbExpression lineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1196         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyLineFromText(System.Data.Common.CommandTrees.DbExpression lineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyMultiLineFromBinary(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1197         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiLineFromBinary(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyMultiLineFromText(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1198         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiLineFromText(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyMultiPointFromBinary(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1199         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPointFromBinary(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyMultiPointFromText(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1200         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPointFromText(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyMultiPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1201         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyMultiPolygonFromText(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1202         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyMultiPolygonFromText(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyPointFromBinary(System.Data.Common.CommandTrees.DbExpression pointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1203         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPointFromBinary(System.Data.Common.CommandTrees.DbExpression pointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyPointFromText(System.Data.Common.CommandTrees.DbExpression pointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1204         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPointFromText(System.Data.Common.CommandTrees.DbExpression pointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression polygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1205         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression polygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeographyPolygonFromText(System.Data.Common.CommandTrees.DbExpression polygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1206         public static System.Data.Common.CommandTrees.DbFunctionExpression GeographyPolygonFromText(System.Data.Common.CommandTrees.DbExpression polygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryCollectionFromBinary(System.Data.Common.CommandTrees.DbExpression geometryCollectionWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1207         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryCollectionFromBinary(System.Data.Common.CommandTrees.DbExpression geometryCollectionWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryCollectionFromText(System.Data.Common.CommandTrees.DbExpression geometryCollectionWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1208         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryCollectionFromText(System.Data.Common.CommandTrees.DbExpression geometryCollectionWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue)1209         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue) { throw null; }
GeometryFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1210         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromBinary(System.Data.Common.CommandTrees.DbExpression wellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryFromGml(System.Data.Common.CommandTrees.DbExpression geometryMarkup)1211         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromGml(System.Data.Common.CommandTrees.DbExpression geometryMarkup) { throw null; }
GeometryFromGml(System.Data.Common.CommandTrees.DbExpression geometryMarkup, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1212         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromGml(System.Data.Common.CommandTrees.DbExpression geometryMarkup, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText)1213         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText) { throw null; }
GeometryFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1214         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryFromText(System.Data.Common.CommandTrees.DbExpression wellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryLineFromBinary(System.Data.Common.CommandTrees.DbExpression lineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1215         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryLineFromBinary(System.Data.Common.CommandTrees.DbExpression lineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryLineFromText(System.Data.Common.CommandTrees.DbExpression lineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1216         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryLineFromText(System.Data.Common.CommandTrees.DbExpression lineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryMultiLineFromBinary(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1217         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiLineFromBinary(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryMultiLineFromText(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1218         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiLineFromText(System.Data.Common.CommandTrees.DbExpression multiLineWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryMultiPointFromBinary(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1219         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPointFromBinary(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryMultiPointFromText(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1220         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPointFromText(System.Data.Common.CommandTrees.DbExpression multiPointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryMultiPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1221         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryMultiPolygonFromText(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1222         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryMultiPolygonFromText(System.Data.Common.CommandTrees.DbExpression multiPolygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryPointFromBinary(System.Data.Common.CommandTrees.DbExpression pointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1223         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPointFromBinary(System.Data.Common.CommandTrees.DbExpression pointWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryPointFromText(System.Data.Common.CommandTrees.DbExpression pointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1224         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPointFromText(System.Data.Common.CommandTrees.DbExpression pointWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression polygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1225         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPolygonFromBinary(System.Data.Common.CommandTrees.DbExpression polygonWellKnownBinaryValue, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
GeometryPolygonFromText(System.Data.Common.CommandTrees.DbExpression polygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId)1226         public static System.Data.Common.CommandTrees.DbFunctionExpression GeometryPolygonFromText(System.Data.Common.CommandTrees.DbExpression polygonWellKnownText, System.Data.Common.CommandTrees.DbExpression coordinateSystemId) { throw null; }
InteriorRingAt(this System.Data.Common.CommandTrees.DbExpression geometryValue, System.Data.Common.CommandTrees.DbExpression indexValue)1227         public static System.Data.Common.CommandTrees.DbFunctionExpression InteriorRingAt(this System.Data.Common.CommandTrees.DbExpression geometryValue, System.Data.Common.CommandTrees.DbExpression indexValue) { throw null; }
InteriorRingCount(this System.Data.Common.CommandTrees.DbExpression geometryValue)1228         public static System.Data.Common.CommandTrees.DbFunctionExpression InteriorRingCount(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
IsClosedSpatial(this System.Data.Common.CommandTrees.DbExpression spatialValue)1229         public static System.Data.Common.CommandTrees.DbFunctionExpression IsClosedSpatial(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
IsEmptySpatial(this System.Data.Common.CommandTrees.DbExpression spatialValue)1230         public static System.Data.Common.CommandTrees.DbFunctionExpression IsEmptySpatial(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
IsRing(this System.Data.Common.CommandTrees.DbExpression geometryValue)1231         public static System.Data.Common.CommandTrees.DbFunctionExpression IsRing(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
IsSimpleGeometry(this System.Data.Common.CommandTrees.DbExpression geometryValue)1232         public static System.Data.Common.CommandTrees.DbFunctionExpression IsSimpleGeometry(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
IsValidGeometry(this System.Data.Common.CommandTrees.DbExpression geometryValue)1233         public static System.Data.Common.CommandTrees.DbFunctionExpression IsValidGeometry(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
Latitude(this System.Data.Common.CommandTrees.DbExpression geographyValue)1234         public static System.Data.Common.CommandTrees.DbFunctionExpression Latitude(this System.Data.Common.CommandTrees.DbExpression geographyValue) { throw null; }
Longitude(this System.Data.Common.CommandTrees.DbExpression geographyValue)1235         public static System.Data.Common.CommandTrees.DbFunctionExpression Longitude(this System.Data.Common.CommandTrees.DbExpression geographyValue) { throw null; }
Measure(this System.Data.Common.CommandTrees.DbExpression spatialValue)1236         public static System.Data.Common.CommandTrees.DbFunctionExpression Measure(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
PointAt(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression indexValue)1237         public static System.Data.Common.CommandTrees.DbFunctionExpression PointAt(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression indexValue) { throw null; }
PointCount(this System.Data.Common.CommandTrees.DbExpression spatialValue)1238         public static System.Data.Common.CommandTrees.DbFunctionExpression PointCount(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
PointOnSurface(this System.Data.Common.CommandTrees.DbExpression geometryValue)1239         public static System.Data.Common.CommandTrees.DbFunctionExpression PointOnSurface(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
SpatialBoundary(this System.Data.Common.CommandTrees.DbExpression geometryValue)1240         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialBoundary(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
SpatialBuffer(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression distance)1241         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialBuffer(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression distance) { throw null; }
SpatialContains(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2)1242         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialContains(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
SpatialConvexHull(this System.Data.Common.CommandTrees.DbExpression geometryValue)1243         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialConvexHull(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
SpatialCrosses(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2)1244         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialCrosses(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
SpatialDifference(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1245         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialDifference(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
SpatialDimension(this System.Data.Common.CommandTrees.DbExpression spatialValue)1246         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialDimension(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
SpatialDisjoint(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1247         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialDisjoint(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
SpatialElementAt(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression indexValue)1248         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialElementAt(this System.Data.Common.CommandTrees.DbExpression spatialValue, System.Data.Common.CommandTrees.DbExpression indexValue) { throw null; }
SpatialElementCount(this System.Data.Common.CommandTrees.DbExpression spatialValue)1249         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialElementCount(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
SpatialEnvelope(this System.Data.Common.CommandTrees.DbExpression geometryValue)1250         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialEnvelope(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
SpatialEquals(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1251         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialEquals(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
SpatialIntersection(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1252         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialIntersection(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
SpatialIntersects(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1253         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialIntersects(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
SpatialLength(this System.Data.Common.CommandTrees.DbExpression spatialValue)1254         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialLength(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
SpatialOverlaps(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2)1255         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialOverlaps(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
SpatialRelate(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2, System.Data.Common.CommandTrees.DbExpression intersectionPatternMatrix)1256         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialRelate(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2, System.Data.Common.CommandTrees.DbExpression intersectionPatternMatrix) { throw null; }
SpatialSymmetricDifference(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1257         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialSymmetricDifference(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
SpatialTouches(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2)1258         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialTouches(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
SpatialTypeName(this System.Data.Common.CommandTrees.DbExpression spatialValue)1259         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialTypeName(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
SpatialUnion(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2)1260         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialUnion(this System.Data.Common.CommandTrees.DbExpression spatialValue1, System.Data.Common.CommandTrees.DbExpression spatialValue2) { throw null; }
SpatialWithin(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2)1261         public static System.Data.Common.CommandTrees.DbFunctionExpression SpatialWithin(this System.Data.Common.CommandTrees.DbExpression geometryValue1, System.Data.Common.CommandTrees.DbExpression geometryValue2) { throw null; }
StartPoint(this System.Data.Common.CommandTrees.DbExpression spatialValue)1262         public static System.Data.Common.CommandTrees.DbFunctionExpression StartPoint(this System.Data.Common.CommandTrees.DbExpression spatialValue) { throw null; }
XCoordinate(this System.Data.Common.CommandTrees.DbExpression geometryValue)1263         public static System.Data.Common.CommandTrees.DbFunctionExpression XCoordinate(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
YCoordinate(this System.Data.Common.CommandTrees.DbExpression geometryValue)1264         public static System.Data.Common.CommandTrees.DbFunctionExpression YCoordinate(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
1265     }
1266 }
1267 namespace System.Data.Common.EntitySql
1268 {
1269     public sealed partial class EntitySqlParser
1270     {
EntitySqlParser()1271         internal EntitySqlParser() { }
Parse(string query, params System.Data.Common.CommandTrees.DbParameterReferenceExpression[] parameters)1272         public System.Data.Common.EntitySql.ParseResult Parse(string query, params System.Data.Common.CommandTrees.DbParameterReferenceExpression[] parameters) { throw null; }
ParseLambda(string query, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables)1273         public System.Data.Common.CommandTrees.DbLambda ParseLambda(string query, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables) { throw null; }
1274     }
1275     public sealed partial class FunctionDefinition
1276     {
FunctionDefinition()1277         internal FunctionDefinition() { }
1278         public int EndPosition { get { throw null; } }
1279         public System.Data.Common.CommandTrees.DbLambda Lambda { get { throw null; } }
1280         public string Name { get { throw null; } }
1281         public int StartPosition { get { throw null; } }
1282     }
1283     public sealed partial class ParseResult
1284     {
ParseResult()1285         internal ParseResult() { }
1286         public System.Data.Common.CommandTrees.DbCommandTree CommandTree { get { throw null; } }
1287         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.EntitySql.FunctionDefinition> FunctionDefinitions { get { throw null; } }
1288     }
1289 }
1290 namespace System.Data.Entity
1291 {
1292     public static partial class Strings
1293     {
1294         public static string ADP_ClosedDataReaderError { get { throw null; } }
1295         public static string ADP_GetSchemaTableIsNotSupported { get { throw null; } }
1296         public static string ADP_ImplicitlyClosedDataReaderError { get { throw null; } }
1297         public static string ADP_InvalidDataDirectory { get { throw null; } }
1298         public static string ADP_InvalidDataReaderFieldCountForScalarType { get { throw null; } }
1299         public static string ADP_InvalidDataReaderUnableToDetermineType { get { throw null; } }
1300         public static string ADP_InvalidMultipartNameDelimiterUsage { get { throw null; } }
1301         public static string ADP_KeysRequiredForNesting { get { throw null; } }
1302         public static string ADP_MustUseSequentialAccess { get { throw null; } }
1303         public static string ADP_NoData { get { throw null; } }
1304         public static string ADP_ProviderDoesNotSupportCommandTrees { get { throw null; } }
1305         public static string AllElementsMustBeInSchema { get { throw null; } }
1306         public static string AmbiguousFunctionArguments { get { throw null; } }
1307         public static string ArgumentMustBeCSpaceType { get { throw null; } }
1308         public static string ArgumentMustBeOSpaceType { get { throw null; } }
1309         public static string ArrayTooSmall { get { throw null; } }
1310         public static string AtleastOneSSDLNeeded { get { throw null; } }
1311         public static string BadNavigationPropertyRolesCannotBeTheSame { get { throw null; } }
1312         public static string BetweenLimitsCannotBeUntypedNulls { get { throw null; } }
1313         public static string CalculatedEnumValueOutOfRange { get { throw null; } }
1314         public static string CannotCreateEmptyMultiset { get { throw null; } }
1315         public static string CannotCreateMultisetofNulls { get { throw null; } }
1316         public static string CannotLoadDifferentVersionOfSchemaInTheSameItemCollection { get { throw null; } }
1317         public static string CodeGen_PropertyDeclaringTypeIsValueType { get { throw null; } }
1318         public static string CodeGen_PropertyIsIndexed { get { throw null; } }
1319         public static string CodeGen_PropertyIsStatic { get { throw null; } }
1320         public static string CodeGen_PropertyNoGetter { get { throw null; } }
1321         public static string CodeGen_PropertyNoSetter { get { throw null; } }
1322         public static string CodeGen_PropertyStrongNameIdentity { get { throw null; } }
1323         public static string CodeGen_PropertyUnsupportedForm { get { throw null; } }
1324         public static string CodeGen_PropertyUnsupportedType { get { throw null; } }
1325         public static string Collections_InvalidEntityStateSource { get { throw null; } }
1326         public static string Collections_UnableToMergeCollections { get { throw null; } }
1327         public static string CommandTextFunctionsCannotDeclareStoreFunctionName { get { throw null; } }
1328         public static string CommandTextFunctionsNotComposable { get { throw null; } }
1329         public static string ComplexObject_ComplexObjectAlreadyAttachedToParent { get { throw null; } }
1330         public static string ComposableFunctionOrFunctionImportMustDeclareReturnType { get { throw null; } }
1331         public static string ConcatBuiltinNotSupported { get { throw null; } }
1332         public static string Cqt_Aggregate_InvalidFunction { get { throw null; } }
1333         public static string Cqt_And_BooleanArgumentsRequired { get { throw null; } }
1334         public static string Cqt_Apply_DuplicateVariableNames { get { throw null; } }
1335         public static string Cqt_Arithmetic_NumericCommonType { get { throw null; } }
1336         public static string Cqt_Binding_CollectionRequired { get { throw null; } }
1337         public static string Cqt_Binding_VariableNameNotValid { get { throw null; } }
1338         public static string Cqt_Case_InvalidResultType { get { throw null; } }
1339         public static string Cqt_Case_WhensMustEqualThens { get { throw null; } }
1340         public static string Cqt_CommandTree_InvalidDataSpace { get { throw null; } }
1341         public static string Cqt_Comparison_ComparableRequired { get { throw null; } }
1342         public static string Cqt_Constant_InvalidType { get { throw null; } }
1343         public static string Cqt_CrossJoin_AtLeastTwoInputs { get { throw null; } }
1344         public static string Cqt_DeRef_RefRequired { get { throw null; } }
1345         public static string Cqt_Distinct_InvalidCollection { get { throw null; } }
1346         public static string Cqt_Element_InvalidArgumentForUnwrapSingleProperty { get { throw null; } }
1347         public static string Cqt_Exceptions_InvalidCommandTree { get { throw null; } }
1348         public static string Cqt_ExpressionList_IncorrectElementCount { get { throw null; } }
1349         public static string Cqt_Factory_IncompatibleRelationEnds { get { throw null; } }
1350         public static string Cqt_Factory_NewCollectionInvalidCommonType { get { throw null; } }
1351         public static string Cqt_Factory_NoSuchRelationEnd { get { throw null; } }
1352         public static string Cqt_Function_CommandTextInExpression { get { throw null; } }
1353         public static string Cqt_Function_NonComposableInExpression { get { throw null; } }
1354         public static string Cqt_Function_VoidResultInvalid { get { throw null; } }
1355         public static string Cqt_General_MetadataNotReadOnly { get { throw null; } }
1356         public static string Cqt_General_NoProviderBooleanType { get { throw null; } }
1357         public static string Cqt_General_NoProviderIntegerType { get { throw null; } }
1358         public static string Cqt_General_NoProviderStringType { get { throw null; } }
1359         public static string Cqt_GetEntityRef_EntityRequired { get { throw null; } }
1360         public static string Cqt_GetRefKey_RefRequired { get { throw null; } }
1361         public static string Cqt_GroupBinding_CollectionRequired { get { throw null; } }
1362         public static string Cqt_GroupBinding_GroupVariableNameNotValid { get { throw null; } }
1363         public static string Cqt_GroupBy_AtLeastOneKeyOrAggregate { get { throw null; } }
1364         public static string Cqt_GroupBy_MoreThanOneGroupAggregate { get { throw null; } }
1365         public static string Cqt_IsNull_CollectionNotAllowed { get { throw null; } }
1366         public static string Cqt_IsNull_InvalidType { get { throw null; } }
1367         public static string Cqt_Join_DuplicateVariableNames { get { throw null; } }
1368         public static string Cqt_Limit_ConstantOrParameterRefRequired { get { throw null; } }
1369         public static string Cqt_Limit_IntegerRequired { get { throw null; } }
1370         public static string Cqt_Limit_NonNegativeLimitRequired { get { throw null; } }
1371         public static string Cqt_Metadata_EdmMemberIncorrectSpace { get { throw null; } }
1372         public static string Cqt_Metadata_EntitySetEntityContainerNull { get { throw null; } }
1373         public static string Cqt_Metadata_EntitySetIncorrectSpace { get { throw null; } }
1374         public static string Cqt_Metadata_EntityTypeEmptyKeyMembersInvalid { get { throw null; } }
1375         public static string Cqt_Metadata_EntityTypeNullKeyMembersInvalid { get { throw null; } }
1376         public static string Cqt_Metadata_FunctionIncorrectSpace { get { throw null; } }
1377         public static string Cqt_Metadata_FunctionParameterIncorrectSpace { get { throw null; } }
1378         public static string Cqt_Metadata_FunctionReturnParameterNull { get { throw null; } }
1379         public static string Cqt_Metadata_TypeUsageIncorrectSpace { get { throw null; } }
1380         public static string Cqt_NewInstance_CollectionTypeRequired { get { throw null; } }
1381         public static string Cqt_NewInstance_IncompatibleRelatedEntity_SourceTypeNotValid { get { throw null; } }
1382         public static string Cqt_NewInstance_StructuralTypeRequired { get { throw null; } }
1383         public static string Cqt_Not_BooleanArgumentRequired { get { throw null; } }
1384         public static string Cqt_Or_BooleanArgumentsRequired { get { throw null; } }
1385         public static string Cqt_Property_InstanceRequiredForInstance { get { throw null; } }
1386         public static string Cqt_Ref_PolymorphicArgRequired { get { throw null; } }
1387         public static string Cqt_RelatedEntityRef_TargetEndFromDifferentRelationship { get { throw null; } }
1388         public static string Cqt_RelatedEntityRef_TargetEndMustBeAtMostOne { get { throw null; } }
1389         public static string Cqt_RelatedEntityRef_TargetEndSameAsSourceEnd { get { throw null; } }
1390         public static string Cqt_RelatedEntityRef_TargetEntityNotCompatible { get { throw null; } }
1391         public static string Cqt_RelatedEntityRef_TargetEntityNotRef { get { throw null; } }
1392         public static string Cqt_RelNav_NoCompositions { get { throw null; } }
1393         public static string Cqt_Skip_ConstantOrParameterRefRequired { get { throw null; } }
1394         public static string Cqt_Skip_IntegerRequired { get { throw null; } }
1395         public static string Cqt_Skip_NonNegativeCountRequired { get { throw null; } }
1396         public static string Cqt_Sort_EmptyCollationInvalid { get { throw null; } }
1397         public static string Cqt_Sort_NonStringCollationInvalid { get { throw null; } }
1398         public static string Cqt_Sort_OrderComparable { get { throw null; } }
1399         public static string Cqt_Util_CheckListEmptyInvalid { get { throw null; } }
1400         public static string CtxAlias { get { throw null; } }
1401         public static string CtxAliasedNamespaceImport { get { throw null; } }
1402         public static string CtxAnd { get { throw null; } }
1403         public static string CtxAnyElement { get { throw null; } }
1404         public static string CtxApplyClause { get { throw null; } }
1405         public static string CtxBetween { get { throw null; } }
1406         public static string CtxCase { get { throw null; } }
1407         public static string CtxCaseElse { get { throw null; } }
1408         public static string CtxCaseWhenThen { get { throw null; } }
1409         public static string CtxCast { get { throw null; } }
1410         public static string CtxCollatedOrderByClauseItem { get { throw null; } }
1411         public static string CtxCollectionTypeDefinition { get { throw null; } }
1412         public static string CtxCommandExpression { get { throw null; } }
1413         public static string CtxCreateRef { get { throw null; } }
1414         public static string CtxDeref { get { throw null; } }
1415         public static string CtxDivide { get { throw null; } }
1416         public static string CtxElement { get { throw null; } }
1417         public static string CtxEquals { get { throw null; } }
1418         public static string CtxEscapedIdentifier { get { throw null; } }
1419         public static string CtxExcept { get { throw null; } }
1420         public static string CtxExists { get { throw null; } }
1421         public static string CtxExpressionList { get { throw null; } }
1422         public static string CtxFlatten { get { throw null; } }
1423         public static string CtxFromApplyClause { get { throw null; } }
1424         public static string CtxFromClause { get { throw null; } }
1425         public static string CtxFromClauseItem { get { throw null; } }
1426         public static string CtxFromClauseList { get { throw null; } }
1427         public static string CtxFromJoinClause { get { throw null; } }
1428         public static string CtxFunctionDefinition { get { throw null; } }
1429         public static string CtxGreaterThan { get { throw null; } }
1430         public static string CtxGreaterThanEqual { get { throw null; } }
1431         public static string CtxGroupByClause { get { throw null; } }
1432         public static string CtxGroupPartition { get { throw null; } }
1433         public static string CtxHavingClause { get { throw null; } }
1434         public static string CtxIdentifier { get { throw null; } }
1435         public static string CtxIn { get { throw null; } }
1436         public static string CtxIntersect { get { throw null; } }
1437         public static string CtxIsNotNull { get { throw null; } }
1438         public static string CtxIsNotOf { get { throw null; } }
1439         public static string CtxIsNull { get { throw null; } }
1440         public static string CtxIsOf { get { throw null; } }
1441         public static string CtxJoinClause { get { throw null; } }
1442         public static string CtxJoinOnClause { get { throw null; } }
1443         public static string CtxKey { get { throw null; } }
1444         public static string CtxLessThan { get { throw null; } }
1445         public static string CtxLessThanEqual { get { throw null; } }
1446         public static string CtxLike { get { throw null; } }
1447         public static string CtxLimitSubClause { get { throw null; } }
1448         public static string CtxLiteral { get { throw null; } }
1449         public static string CtxMemberAccess { get { throw null; } }
1450         public static string CtxMethod { get { throw null; } }
1451         public static string CtxMinus { get { throw null; } }
1452         public static string CtxModulus { get { throw null; } }
1453         public static string CtxMultiply { get { throw null; } }
1454         public static string CtxMultisetCtor { get { throw null; } }
1455         public static string CtxNamespaceImport { get { throw null; } }
1456         public static string CtxNamespaceImportList { get { throw null; } }
1457         public static string CtxNavigate { get { throw null; } }
1458         public static string CtxNot { get { throw null; } }
1459         public static string CtxNotBetween { get { throw null; } }
1460         public static string CtxNotEqual { get { throw null; } }
1461         public static string CtxNotIn { get { throw null; } }
1462         public static string CtxNotLike { get { throw null; } }
1463         public static string CtxNullLiteral { get { throw null; } }
1464         public static string CtxOfType { get { throw null; } }
1465         public static string CtxOfTypeOnly { get { throw null; } }
1466         public static string CtxOr { get { throw null; } }
1467         public static string CtxOrderByClause { get { throw null; } }
1468         public static string CtxOrderByClauseItem { get { throw null; } }
1469         public static string CtxOverlaps { get { throw null; } }
1470         public static string CtxParen { get { throw null; } }
1471         public static string CtxPlus { get { throw null; } }
1472         public static string CtxQueryExpression { get { throw null; } }
1473         public static string CtxQueryStatement { get { throw null; } }
1474         public static string CtxRef { get { throw null; } }
1475         public static string CtxRefTypeDefinition { get { throw null; } }
1476         public static string CtxRelationship { get { throw null; } }
1477         public static string CtxRelationshipList { get { throw null; } }
1478         public static string CtxRowCtor { get { throw null; } }
1479         public static string CtxRowTypeDefinition { get { throw null; } }
1480         public static string CtxSelectRowClause { get { throw null; } }
1481         public static string CtxSelectValueClause { get { throw null; } }
1482         public static string CtxSet { get { throw null; } }
1483         public static string CtxSimpleIdentifier { get { throw null; } }
1484         public static string CtxSkipSubClause { get { throw null; } }
1485         public static string CtxTopSubClause { get { throw null; } }
1486         public static string CtxTreat { get { throw null; } }
1487         public static string CtxTypeName { get { throw null; } }
1488         public static string CtxTypeNameWithTypeSpec { get { throw null; } }
1489         public static string CtxUnaryMinus { get { throw null; } }
1490         public static string CtxUnaryPlus { get { throw null; } }
1491         public static string CtxUnion { get { throw null; } }
1492         public static string CtxUnionAll { get { throw null; } }
1493         public static string CtxWhereClause { get { throw null; } }
1494         public static string DefaultNotAllowed { get { throw null; } }
1495         public static string DuplicateEnumMember { get { throw null; } }
1496         public static string EdmMembersDefiningTypeDoNotAgreeWithMetadataType { get { throw null; } }
1497         public static string ElementOperatorIsNotSupported { get { throw null; } }
1498         public static string ELinq_AnonymousType { get { throw null; } }
1499         public static string ELinq_ClosureType { get { throw null; } }
1500         public static string ELinq_CreateOrderedEnumerableNotSupported { get { throw null; } }
1501         public static string ELinq_CycleDetected { get { throw null; } }
1502         public static string ELinq_EdmFunctionDirectCall { get { throw null; } }
1503         public static string ELinq_ExpressionMustBeIQueryable { get { throw null; } }
1504         public static string ELinq_MethodNotDirectlyCallable { get { throw null; } }
1505         public static string ELinq_PropertyIndexNotSupported { get { throw null; } }
1506         public static string ELinq_SkipWithoutOrder { get { throw null; } }
1507         public static string ELinq_ThenByDoesNotFollowOrderBy { get { throw null; } }
1508         public static string ELinq_UnsupportedBinding { get { throw null; } }
1509         public static string ELinq_UnsupportedCastToDecimal { get { throw null; } }
1510         public static string ELinq_UnsupportedConstructor { get { throw null; } }
1511         public static string ELinq_UnsupportedDifferentContexts { get { throw null; } }
1512         public static string ELinq_UnsupportedInclude { get { throw null; } }
1513         public static string ELinq_UnsupportedInitializers { get { throw null; } }
1514         public static string ELinq_UnsupportedMergeAs { get { throw null; } }
1515         public static string ELinq_UnsupportedNestedFirst { get { throw null; } }
1516         public static string ELinq_UnsupportedNestedSingle { get { throw null; } }
1517         public static string ELinq_UnsupportedQueryableMethod { get { throw null; } }
1518         public static string EmptyCommandText { get { throw null; } }
1519         public static string EmptyDefiningQuery { get { throw null; } }
1520         public static string EmptySchemaTextReader { get { throw null; } }
1521         public static string EntityClient_CannotCloneStoreProvider { get { throw null; } }
1522         public static string EntityClient_CannotDeduceDbType { get { throw null; } }
1523         public static string EntityClient_CannotGetCommandText { get { throw null; } }
1524         public static string EntityClient_CannotGetCommandTree { get { throw null; } }
1525         public static string EntityClient_CannotReopenConnection { get { throw null; } }
1526         public static string EntityClient_CannotReprepareCommandDefinitionBasedCommand { get { throw null; } }
1527         public static string EntityClient_CannotSetCommandText { get { throw null; } }
1528         public static string EntityClient_CannotSetCommandTree { get { throw null; } }
1529         public static string EntityClient_ClosedConnectionForUpdate { get { throw null; } }
1530         public static string EntityClient_CommandDefinitionExecutionFailed { get { throw null; } }
1531         public static string EntityClient_CommandDefinitionPreparationFailed { get { throw null; } }
1532         public static string EntityClient_CommandExecutionFailed { get { throw null; } }
1533         public static string EntityClient_CommandTreeMetadataIncompatible { get { throw null; } }
1534         public static string EntityClient_ConnectionMustBeClosed { get { throw null; } }
1535         public static string EntityClient_ConnectionNotOpen { get { throw null; } }
1536         public static string EntityClient_ConnectionStateBroken { get { throw null; } }
1537         public static string EntityClient_ConnectionStateClosed { get { throw null; } }
1538         public static string EntityClient_ConnectionStringNeededBeforeOperation { get { throw null; } }
1539         public static string EntityClient_DataReaderIsStillOpen { get { throw null; } }
1540         public static string EntityClient_EmptyParameterName { get { throw null; } }
1541         public static string EntityClient_ErrorInBeginningTransaction { get { throw null; } }
1542         public static string EntityClient_ErrorInClosingConnection { get { throw null; } }
1543         public static string EntityClient_ExtraParametersWithNamedConnection { get { throw null; } }
1544         public static string EntityClient_FunctionImportEmptyCommandText { get { throw null; } }
1545         public static string EntityClient_InvalidNamedConnection { get { throw null; } }
1546         public static string EntityClient_InvalidStoredProcedureCommandText { get { throw null; } }
1547         public static string EntityClient_InvalidStoreProvider { get { throw null; } }
1548         public static string EntityClient_InvalidTransactionForCommand { get { throw null; } }
1549         public static string EntityClient_NoCommandText { get { throw null; } }
1550         public static string EntityClient_NoConnectionForAdapter { get { throw null; } }
1551         public static string EntityClient_NoConnectionForCommand { get { throw null; } }
1552         public static string EntityClient_NoStoreConnectionForUpdate { get { throw null; } }
1553         public static string EntityClient_ProviderGeneralError { get { throw null; } }
1554         public static string EntityClient_RequiresNonStoreCommandTree { get { throw null; } }
1555         public static string EntityClient_SettingsCannotBeChangedOnOpenConnection { get { throw null; } }
1556         public static string EntityClient_StoreReaderFailed { get { throw null; } }
1557         public static string EntityClient_TooFewColumns { get { throw null; } }
1558         public static string EntityClient_TransactionAlreadyStarted { get { throw null; } }
1559         public static string EntityClient_UnsupportedCommandType { get { throw null; } }
1560         public static string EntityClient_ValueNotString { get { throw null; } }
1561         public static string EntityKey_CannotChangeKey { get { throw null; } }
1562         public static string EntityKey_DataRecordMustBeEntity { get { throw null; } }
1563         public static string EntityKey_EntityKeyMustHaveValues { get { throw null; } }
1564         public static string EntityKey_InvalidQualifiedEntitySetName { get { throw null; } }
1565         public static string EntityKey_MissingEntitySetName { get { throw null; } }
1566         public static string EntityKey_NoNullsAllowedInKeyValuePairs { get { throw null; } }
1567         public static string EntityKey_UnexpectedNull { get { throw null; } }
1568         public static string EntityParameterCollectionRemoveInvalidObject { get { throw null; } }
1569         public static string EntityParameterContainedByAnotherCollection { get { throw null; } }
1570         public static string EntityParameterNull { get { throw null; } }
1571         public static string EntityProxyTypeInfo_ProxyHasWrongWrapper { get { throw null; } }
1572         public static string EntityReference_CannotChangeReferentialConstraintProperty { get { throw null; } }
1573         public static string EntityReference_CannotSetSpecialKeys { get { throw null; } }
1574         public static string EntityReference_EntityKeyValueMismatch { get { throw null; } }
1575         public static string EntityReference_LessThanExpectedRelatedEntitiesFound { get { throw null; } }
1576         public static string EntityReference_MoreThanExpectedRelatedEntitiesFound { get { throw null; } }
1577         public static string EntitySetInAnotherContainer { get { throw null; } }
1578         public static string EntityTypesDoNotAgree { get { throw null; } }
1579         public static string Entity_EntityCantHaveMultipleChangeTrackers { get { throw null; } }
1580         public static string ExpressionCannotBeNull { get { throw null; } }
1581         public static string ExpressionMustBeCollection { get { throw null; } }
1582         public static string ExpressionMustBeNumericType { get { throw null; } }
1583         public static string ExpressionTypeMustBeBoolean { get { throw null; } }
1584         public static string ExpressionTypeMustBeEqualComparable { get { throw null; } }
1585         public static string ExpressionTypeMustNotBeCollection { get { throw null; } }
1586         public static string ExprIsNotValidEntitySetForCreateRef { get { throw null; } }
1587         public static string ExtraInfo { get { throw null; } }
1588         public static string FacetDeclarationRequiresTypeAttribute { get { throw null; } }
1589         public static string FailedToRetrieveProviderManifest { get { throw null; } }
1590         public static string GeneralQueryError { get { throw null; } }
1591         public static string Generated_Views_Changed { get { throw null; } }
1592         public static string GeneratorErrorSeverityError { get { throw null; } }
1593         public static string GeneratorErrorSeverityUnknown { get { throw null; } }
1594         public static string GeneratorErrorSeverityWarning { get { throw null; } }
1595         public static string GenericSyntaxError { get { throw null; } }
1596         public static string GroupingKeysMustBeEqualComparable { get { throw null; } }
1597         public static string GroupPartitionOutOfContext { get { throw null; } }
1598         public static string GroupVarNotFoundInScope { get { throw null; } }
1599         public static string HavingRequiresGroupClause { get { throw null; } }
1600         public static string ImcompatibleCreateRefKeyElementType { get { throw null; } }
1601         public static string ImcompatibleCreateRefKeyType { get { throw null; } }
1602         public static string IncorrectProviderManifest { get { throw null; } }
1603         public static string InFromClause { get { throw null; } }
1604         public static string InGroupClause { get { throw null; } }
1605         public static string InnerJoinMustHaveOnPredicate { get { throw null; } }
1606         public static string InRowCtor { get { throw null; } }
1607         public static string InSelectProjectionList { get { throw null; } }
1608         public static string InvalidArgumentTypeForAggregateFunction { get { throw null; } }
1609         public static string InvalidCaseResultTypes { get { throw null; } }
1610         public static string InvalidCaseWhenThenNullType { get { throw null; } }
1611         public static string InvalidCastExpressionType { get { throw null; } }
1612         public static string InvalidCastType { get { throw null; } }
1613         public static string InvalidCreateRefKeyType { get { throw null; } }
1614         public static string InvalidDistinctArgumentInCtor { get { throw null; } }
1615         public static string InvalidDistinctArgumentInNonAggFunction { get { throw null; } }
1616         public static string InvalidDocumentationBothTextAndStructure { get { throw null; } }
1617         public static string InvalidEmptyIdentifier { get { throw null; } }
1618         public static string InvalidEmptyQuery { get { throw null; } }
1619         public static string InvalidEmptyQueryTextArgument { get { throw null; } }
1620         public static string InvalidEnumUnderlyingType { get { throw null; } }
1621         public static string InvalidFlattenArgument { get { throw null; } }
1622         public static string InvalidJoinLeftCorrelation { get { throw null; } }
1623         public static string InvalidMaxLengthSize { get { throw null; } }
1624         public static string InvalidMetadataMemberName { get { throw null; } }
1625         public static string InvalidMetadataPath { get { throw null; } }
1626         public static string InvalidModeForWithRelationshipClause { get { throw null; } }
1627         public static string InvalidNamespaceAlias { get { throw null; } }
1628         public static string InvalidNullArithmetic { get { throw null; } }
1629         public static string InvalidNullComparison { get { throw null; } }
1630         public static string InvalidOperationMultipleEndsInAssociation { get { throw null; } }
1631         public static string InvalidOperatorSymbol { get { throw null; } }
1632         public static string InvalidPredicateForCrossJoin { get { throw null; } }
1633         public static string InvalidPunctuatorSymbol { get { throw null; } }
1634         public static string InvalidSavePoint { get { throw null; } }
1635         public static string InvalidScopeIndex { get { throw null; } }
1636         public static string InvalidSelectValueAliasedExpression { get { throw null; } }
1637         public static string InvalidSelectValueList { get { throw null; } }
1638         public static string InvalidTypeForWithRelationshipClause { get { throw null; } }
1639         public static string Iqt_CTGen_UnexpectedAggregate { get { throw null; } }
1640         public static string Iqt_CTGen_UnexpectedVarDef { get { throw null; } }
1641         public static string Iqt_CTGen_UnexpectedVarDefList { get { throw null; } }
1642         public static string IsNullInvalidType { get { throw null; } }
1643         public static string LeftSetExpressionArgsMustBeCollection { get { throw null; } }
1644         public static string LikeArgMustBeStringType { get { throw null; } }
1645         public static string LocalizedCollection { get { throw null; } }
1646         public static string LocalizedColumn { get { throw null; } }
1647         public static string LocalizedComplex { get { throw null; } }
1648         public static string LocalizedEntity { get { throw null; } }
1649         public static string LocalizedEntityContainerExpression { get { throw null; } }
1650         public static string LocalizedEnumMember { get { throw null; } }
1651         public static string LocalizedFunction { get { throw null; } }
1652         public static string LocalizedInlineFunction { get { throw null; } }
1653         public static string LocalizedKeyword { get { throw null; } }
1654         public static string LocalizedLeft { get { throw null; } }
1655         public static string LocalizedLine { get { throw null; } }
1656         public static string LocalizedMetadataMemberExpression { get { throw null; } }
1657         public static string LocalizedNamespace { get { throw null; } }
1658         public static string LocalizedNear { get { throw null; } }
1659         public static string LocalizedPrimitive { get { throw null; } }
1660         public static string LocalizedReference { get { throw null; } }
1661         public static string LocalizedRight { get { throw null; } }
1662         public static string LocalizedRow { get { throw null; } }
1663         public static string LocalizedTerm { get { throw null; } }
1664         public static string LocalizedType { get { throw null; } }
1665         public static string LocalizedValueExpression { get { throw null; } }
1666         public static string MalformedSingleQuotePayload { get { throw null; } }
1667         public static string MalformedStringLiteralPayload { get { throw null; } }
1668         public static string Mapping_ConditionValueTypeMismatch { get { throw null; } }
1669         public static string Mapping_DifferentEdmStoreVersion { get { throw null; } }
1670         public static string Mapping_DifferentMappingEdmStoreVersion { get { throw null; } }
1671         public static string Mapping_DistinctFlagInReadWriteContainer { get { throw null; } }
1672         public static string Mapping_General_Error { get { throw null; } }
1673         public static string Mapping_InvalidContent_Association_Type_Empty { get { throw null; } }
1674         public static string Mapping_InvalidContent_ConditionMapping_Both_Members { get { throw null; } }
1675         public static string Mapping_InvalidContent_ConditionMapping_Both_Values { get { throw null; } }
1676         public static string Mapping_InvalidContent_ConditionMapping_Either_Members { get { throw null; } }
1677         public static string Mapping_InvalidContent_ConditionMapping_Either_Values { get { throw null; } }
1678         public static string Mapping_InvalidContent_ConditionMapping_NonScalar { get { throw null; } }
1679         public static string Mapping_InvalidContent_Container_SubElement { get { throw null; } }
1680         public static string Mapping_InvalidContent_General { get { throw null; } }
1681         public static string Mapping_InvalidContent_IsTypeOfNotTerminated { get { throw null; } }
1682         public static string Mapping_InvalidContent_Table_Expected { get { throw null; } }
1683         public static string Mapping_InvalidContent_TypeMapping_QueryView { get { throw null; } }
1684         public static string Mapping_ModificationFunction_In_Table_Context { get { throw null; } }
1685         public static string Mapping_ModificationFunction_MissingVersion { get { throw null; } }
1686         public static string Mapping_ModificationFunction_Multiple_Types { get { throw null; } }
1687         public static string Mapping_ModificationFunction_VersionMustBeCurrent { get { throw null; } }
1688         public static string Mapping_ModificationFunction_VersionMustBeOriginal { get { throw null; } }
1689         public static string Mapping_TypeName_For_First_QueryView { get { throw null; } }
1690         public static string Materializer_CannotReEnumerateQueryResults { get { throw null; } }
1691         public static string Materializer_PropertyIsNotNullable { get { throw null; } }
1692         public static string Materializer_UnsupportedType { get { throw null; } }
1693         public static string Metadata_General_Error { get { throw null; } }
1694         public static string MethodInvocationNotSupported { get { throw null; } }
1695         public static string MismatchNumberOfPropertiesinRelationshipConstraint { get { throw null; } }
1696         public static string MissingName { get { throw null; } }
1697         public static string MissingNamespaceAttribute { get { throw null; } }
1698         public static string MultisetElemsAreNotTypeCompatible { get { throw null; } }
1699         public static string NonComposableFunctionHasDisallowedAttribute { get { throw null; } }
1700         public static string NonComposableFunctionMustNotDeclareReturnType { get { throw null; } }
1701         public static string NotBinaryTypeForTypeUsage { get { throw null; } }
1702         public static string NotDateTimeOffsetTypeForTypeUsage { get { throw null; } }
1703         public static string NotDateTimeTypeForTypeUsage { get { throw null; } }
1704         public static string NotDecimalTypeForTypeUsage { get { throw null; } }
1705         public static string NotStringTypeForTypeUsage { get { throw null; } }
1706         public static string NotTimeTypeForTypeUsage { get { throw null; } }
1707         public static string NotValidInputPath { get { throw null; } }
1708         public static string NullLiteralCannotBePromotedToCollectionOfNulls { get { throw null; } }
1709         public static string ObjectContext_CannotAttachEntityWithoutKey { get { throw null; } }
1710         public static string ObjectContext_CannotAttachEntityWithTemporaryKey { get { throw null; } }
1711         public static string ObjectContext_CannotDeleteEntityNotInObjectStateManager { get { throw null; } }
1712         public static string ObjectContext_CannotDetachEntityNotInObjectStateManager { get { throw null; } }
1713         public static string ObjectContext_CannotSetDefaultContainerName { get { throw null; } }
1714         public static string ObjectContext_CommitWithConceptualNull { get { throw null; } }
1715         public static string ObjectContext_ContainerQualifiedEntitySetNameRequired { get { throw null; } }
1716         public static string ObjectContext_EntityAlreadyExistsInObjectStateManager { get { throw null; } }
1717         public static string ObjectContext_EntityNotTrackedOrHasTempKey { get { throw null; } }
1718         public static string ObjectContext_EntitySetNameOrEntityKeyRequired { get { throw null; } }
1719         public static string ObjectContext_ExecuteCommandWithMixOfDbParameterAndValues { get { throw null; } }
1720         public static string ObjectContext_InvalidCommandTimeout { get { throw null; } }
1721         public static string ObjectContext_InvalidConnection { get { throw null; } }
1722         public static string ObjectContext_InvalidConnectionString { get { throw null; } }
1723         public static string ObjectContext_InvalidDataAdapter { get { throw null; } }
1724         public static string ObjectContext_InvalidEntityState { get { throw null; } }
1725         public static string ObjectContext_InvalidRelationshipState { get { throw null; } }
1726         public static string ObjectContext_MetadataHasChanged { get { throw null; } }
1727         public static string ObjectContext_ObjectDisposed { get { throw null; } }
1728         public static string ObjectContext_ObjectNotFound { get { throw null; } }
1729         public static string ObjectContext_QualfiedEntitySetName { get { throw null; } }
1730         public static string ObjectContext_RequiredMetadataNotAvailble { get { throw null; } }
1731         public static string ObjectContext_SelectorExpressionMustBeMemberAccess { get { throw null; } }
1732         public static string ObjectContext_StoreEntityNotPresentInClient { get { throw null; } }
1733         public static string ObjectParameterCollection_ParametersLocked { get { throw null; } }
1734         public static string ObjectQuery_InvalidConnection { get { throw null; } }
1735         public static string ObjectQuery_InvalidEmptyQuery { get { throw null; } }
1736         public static string ObjectQuery_QueryBuilder_InvalidFilterPredicate { get { throw null; } }
1737         public static string ObjectQuery_QueryBuilder_InvalidGroupKeyList { get { throw null; } }
1738         public static string ObjectQuery_QueryBuilder_InvalidProjectionList { get { throw null; } }
1739         public static string ObjectQuery_QueryBuilder_InvalidQueryArgument { get { throw null; } }
1740         public static string ObjectQuery_QueryBuilder_InvalidSkipCount { get { throw null; } }
1741         public static string ObjectQuery_QueryBuilder_InvalidSortKeyList { get { throw null; } }
1742         public static string ObjectQuery_QueryBuilder_InvalidTopCount { get { throw null; } }
1743         public static string ObjectQuery_QueryBuilder_NotSupportedLinqSource { get { throw null; } }
1744         public static string ObjectQuery_Span_IncludeRequiresEntityOrEntityCollection { get { throw null; } }
1745         public static string ObjectQuery_Span_SpanPathSyntaxError { get { throw null; } }
1746         public static string ObjectQuery_Span_WhiteSpacePath { get { throw null; } }
1747         public static string ObjectQuery_UnableToMapResultType { get { throw null; } }
1748         public static string ObjectStateEntry_CannotAccessKeyEntryValues { get { throw null; } }
1749         public static string ObjectStateEntry_CannotDeleteOnKeyEntry { get { throw null; } }
1750         public static string ObjectStateEntry_CannotModifyKeyEntryState { get { throw null; } }
1751         public static string ObjectStateEntry_CantModifyDetachedDeletedEntries { get { throw null; } }
1752         public static string ObjectStateEntry_CantModifyRelationState { get { throw null; } }
1753         public static string ObjectStateEntry_CantModifyRelationValues { get { throw null; } }
1754         public static string ObjectStateEntry_CantSetEntityKey { get { throw null; } }
1755         public static string ObjectStateEntry_CurrentValuesDoesNotExist { get { throw null; } }
1756         public static string ObjectStateEntry_EntityMemberChangedWithoutEntityMemberChanging { get { throw null; } }
1757         public static string ObjectStateEntry_InvalidState { get { throw null; } }
1758         public static string ObjectStateEntry_InvalidTypeForComplexTypeProperty { get { throw null; } }
1759         public static string ObjectStateEntry_OriginalValuesDoesNotExist { get { throw null; } }
1760         public static string ObjectStateEntry_RelationshipAndKeyEntriesDoNotHaveRelationshipManagers { get { throw null; } }
1761         public static string ObjectStateManager_AcceptChangesEntityKeyIsNotValid { get { throw null; } }
1762         public static string ObjectStateManager_CannotChangeRelationshipStateEntityAdded { get { throw null; } }
1763         public static string ObjectStateManager_CannotChangeRelationshipStateEntityDeleted { get { throw null; } }
1764         public static string ObjectStateManager_CannotChangeRelationshipStateKeyEntry { get { throw null; } }
1765         public static string ObjectStateManager_CannotFixUpKeyToExistingValues { get { throw null; } }
1766         public static string ObjectStateManager_CannotGetRelationshipManagerForDetachedPocoEntity { get { throw null; } }
1767         public static string ObjectStateManager_ChangeRelationshipStateNotSupportedForForeignKeyAssociations { get { throw null; } }
1768         public static string ObjectStateManager_ChangeStateFromAddedWithNullKeyIsInvalid { get { throw null; } }
1769         public static string ObjectStateManager_DetachedObjectStateEntriesDoesNotExistInObjectStateManager { get { throw null; } }
1770         public static string ObjectStateManager_EntityConflictsWithKeyEntry { get { throw null; } }
1771         public static string ObjectStateManager_EntityNotTracked { get { throw null; } }
1772         public static string ObjectStateManager_InvalidKey { get { throw null; } }
1773         public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKey { get { throw null; } }
1774         public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKeyForAttach { get { throw null; } }
1775         public static string ObjectStateManager_NoEntryExistForEntityKey { get { throw null; } }
1776         public static string ObjectStateManager_ObjectStateManagerContainsThisEntityKey { get { throw null; } }
1777         public static string ObjectView_AddNewOperationNotAllowedOnAbstractBindingList { get { throw null; } }
1778         public static string ObjectView_CannotReplacetheEntityorRow { get { throw null; } }
1779         public static string ObjectView_IncompatibleArgument { get { throw null; } }
1780         public static string ObjectView_IndexBasedInsertIsNotSupported { get { throw null; } }
1781         public static string ObjectView_WriteOperationNotAllowedOnReadOnlyBindingList { get { throw null; } }
1782         public static string OnlyStoreConnectionsSupported { get { throw null; } }
1783         public static string OperationOnReadOnlyCollection { get { throw null; } }
1784         public static string OperationOnReadOnlyItem { get { throw null; } }
1785         public static string OrderByKeyIsNotOrderComparable { get { throw null; } }
1786         public static string PlusLeftExpressionInvalidType { get { throw null; } }
1787         public static string PlusRightExpressionInvalidType { get { throw null; } }
1788         public static string ProviderDidNotCreateACommandDefinition { get { throw null; } }
1789         public static string ProviderDidNotReturnAProviderManifest { get { throw null; } }
1790         public static string ProviderDidNotReturnAProviderManifestToken { get { throw null; } }
1791         public static string ProviderDidNotReturnSpatialServices { get { throw null; } }
1792         public static string ProviderDoesNotSupportCreateDatabase { get { throw null; } }
1793         public static string ProviderDoesNotSupportCreateDatabaseScript { get { throw null; } }
1794         public static string ProviderDoesNotSupportDatabaseExists { get { throw null; } }
1795         public static string ProviderDoesNotSupportDeleteDatabase { get { throw null; } }
1796         public static string ProviderEscapeLikeArgumentReturnedNull { get { throw null; } }
1797         public static string ProviderManifestTokenNotFound { get { throw null; } }
1798         public static string ProviderRequiresStoreCommandTree { get { throw null; } }
1799         public static string ProviderReturnedNullForCreateCommandDefinition { get { throw null; } }
1800         public static string ProviderShouldOverrideEscapeLikeArgument { get { throw null; } }
1801         public static string RelatedEndExprTypeMustBeReference { get { throw null; } }
1802         public static string RelatedEnd_CannotCreateRelationshipEntitiesInDifferentContexts { get { throw null; } }
1803         public static string RelatedEnd_ConflictingChangeOfRelationshipDetected { get { throw null; } }
1804         public static string RelatedEnd_InvalidEntityContextForAttach { get { throw null; } }
1805         public static string RelatedEnd_InvalidEntityStateForAttach { get { throw null; } }
1806         public static string RelatedEnd_InvalidOwnerStateForAttach { get { throw null; } }
1807         public static string RelatedEnd_LoadCalledOnAlreadyLoadedNoTrackedRelatedEnd { get { throw null; } }
1808         public static string RelatedEnd_LoadCalledOnNonEmptyNoTrackedRelatedEnd { get { throw null; } }
1809         public static string RelatedEnd_OwnerIsNull { get { throw null; } }
1810         public static string RelatedEnd_RelatedEndNotFound { get { throw null; } }
1811         public static string RelatedEnd_UnableToAddEntity { get { throw null; } }
1812         public static string RelatedEnd_UnableToAddRelationshipWithDeletedEntity { get { throw null; } }
1813         public static string RelatedEnd_UnableToRemoveEntity { get { throw null; } }
1814         public static string RelationshipFromEndIsAmbiguos { get { throw null; } }
1815         public static string RelationshipManager_CannotGetRelatEndForDetachedPocoEntity { get { throw null; } }
1816         public static string RelationshipManager_CircularRelationshipsWithReferentialConstraints { get { throw null; } }
1817         public static string RelationshipManager_CollectionInitializeIsForDeserialization { get { throw null; } }
1818         public static string RelationshipManager_InconsistentReferentialConstraintProperties { get { throw null; } }
1819         public static string RelationshipManager_InitializeIsForDeserialization { get { throw null; } }
1820         public static string RelationshipManager_InvalidRelationshipManagerOwner { get { throw null; } }
1821         public static string RelationshipManager_UnableToRetrieveReferentialConstraintProperties { get { throw null; } }
1822         public static string RelationshipManager_UnexpectedNull { get { throw null; } }
1823         public static string RelationshipManager_UnexpectedNullContext { get { throw null; } }
1824         public static string RelationshipToEndIsAmbiguos { get { throw null; } }
1825         public static string ResultingExpressionTypeCannotBeNull { get { throw null; } }
1826         public static string RightSetExpressionArgsMustBeCollection { get { throw null; } }
1827         public static string RowCtorElementCannotBeNull { get { throw null; } }
1828         public static string RowTypeWithoutProperty { get { throw null; } }
1829         public static string SelectDistinctMustBeEqualComparable { get { throw null; } }
1830         public static string SourceUriUnknown { get { throw null; } }
1831         public static string SpatialWithUseStrongSpatialTypesFalse { get { throw null; } }
1832         public static string Spatial_GeographyValueNotCompatibleWithSpatialServices { get { throw null; } }
1833         public static string Spatial_GeometryValueNotCompatibleWithSpatialServices { get { throw null; } }
1834         public static string Spatial_ProviderValueNotCompatibleWithSpatialServices { get { throw null; } }
1835         public static string Spatial_WellKnownGeographyValueNotValid { get { throw null; } }
1836         public static string Spatial_WellKnownGeometryValueNotValid { get { throw null; } }
1837         public static string Spatial_WellKnownValueSerializationPropertyNotDirectlySettable { get { throw null; } }
1838         public static string SqlGen_ApplyNotSupportedOnSql8 { get { throw null; } }
1839         public static string SqlGen_NiladicFunctionsCannotHaveParameters { get { throw null; } }
1840         public static string SqlGen_ParameterForLimitNotSupportedOnSql8 { get { throw null; } }
1841         public static string SqlGen_ParameterForSkipNotSupportedOnSql8 { get { throw null; } }
1842         public static string SqlProvider_CredentialsMissingForMasterConnection { get { throw null; } }
1843         public static string SqlProvider_DdlGeneration_CannotDeleteDatabaseNoInitialCatalog { get { throw null; } }
1844         public static string SqlProvider_DdlGeneration_CannotTellIfDatabaseExists { get { throw null; } }
1845         public static string SqlProvider_DdlGeneration_MissingInitialCatalog { get { throw null; } }
1846         public static string SqlProvider_GeographyValueNotSqlCompatible { get { throw null; } }
1847         public static string SqlProvider_GeometryValueNotSqlCompatible { get { throw null; } }
1848         public static string SqlProvider_IncompleteCreateDatabase { get { throw null; } }
1849         public static string SqlProvider_IncompleteCreateDatabaseAggregate { get { throw null; } }
1850         public static string SqlProvider_Sql2008RequiredForSpatial { get { throw null; } }
1851         public static string SqlProvider_SqlTypesAssemblyNotFound { get { throw null; } }
1852         public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoSrid { get { throw null; } }
1853         public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoWkbOrWkt { get { throw null; } }
1854         public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoSrid { get { throw null; } }
1855         public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoWkbOrWkt { get { throw null; } }
1856         public static string StackOverflowInParser { get { throw null; } }
1857         public static string TopAndLimitCannotCoexist { get { throw null; } }
1858         public static string TopAndSkipCannotCoexist { get { throw null; } }
1859         public static string TVFReturnTypeRowHasNonScalarProperty { get { throw null; } }
1860         public static string TypeArgumentIsNotValid { get { throw null; } }
1861         public static string TypeArgumentMustBeLiteral { get { throw null; } }
1862         public static string TypeDeclaredAsAttributeAndElement { get { throw null; } }
1863         public static string TypeMustBeDeclared { get { throw null; } }
1864         public static string TypeMustBeInheritableType { get { throw null; } }
1865         public static string UnableToDetermineApplicationContext { get { throw null; } }
1866         public static string UnableToDetermineStoreVersion { get { throw null; } }
1867         public static string UnableToLoadResource { get { throw null; } }
1868         public static string UnknownAstCommandExpression { get { throw null; } }
1869         public static string UnknownAstExpressionType { get { throw null; } }
1870         public static string UnknownBuiltInAstExpressionType { get { throw null; } }
1871         public static string Update_AmbiguousServerGenIdentifier { get { throw null; } }
1872         public static string Update_CircularRelationships { get { throw null; } }
1873         public static string Update_ConstraintCycle { get { throw null; } }
1874         public static string Update_DuplicateKeys { get { throw null; } }
1875         public static string Update_ErrorLoadingRecord { get { throw null; } }
1876         public static string Update_GeneralExecutionException { get { throw null; } }
1877         public static string Update_InvalidChanges { get { throw null; } }
1878         public static string Update_ReferentialConstraintIntegrityViolation { get { throw null; } }
1879         public static string Update_WorkspaceMismatch { get { throw null; } }
1880         public static string Validator_BaseTypeHasMemberOfSameName { get { throw null; } }
1881         public static string Validator_CollectionHasNoTypeUsage { get { throw null; } }
1882         public static string Validator_CollectionTypesCannotHaveBaseType { get { throw null; } }
1883         public static string Validator_EmptyIdentity { get { throw null; } }
1884         public static string Validator_FacetHasNoName { get { throw null; } }
1885         public static string Validator_FacetTypeIsNull { get { throw null; } }
1886         public static string Validator_ItemAttributeHasNullTypeUsage { get { throw null; } }
1887         public static string Validator_MemberHasNoName { get { throw null; } }
1888         public static string Validator_MemberHasNullDeclaringType { get { throw null; } }
1889         public static string Validator_MemberHasNullTypeUsage { get { throw null; } }
1890         public static string Validator_MetadataPropertyHasNoName { get { throw null; } }
1891         public static string Validator_OSpace_Convention_NonMatchingUnderlyingTypes { get { throw null; } }
1892         public static string Validator_RefTypeHasNullEntityType { get { throw null; } }
1893         public static string Validator_RefTypesCannotHaveBaseType { get { throw null; } }
1894         public static string Validator_TypeHasNoName { get { throw null; } }
1895         public static string Validator_TypeHasNoNamespace { get { throw null; } }
1896         public static string Validator_TypeUsageHasNullEdmType { get { throw null; } }
1897         public static string ViewGen_AND { get { throw null; } }
1898         public static string ViewGen_CommaBlank { get { throw null; } }
1899         public static string ViewGen_Entities { get { throw null; } }
1900         public static string ViewGen_EntityInstanceToken { get { throw null; } }
1901         public static string ViewGen_Error { get { throw null; } }
1902         public static string Viewgen_ErrorPattern_Partition_Disj_Eq { get { throw null; } }
1903         public static string Viewgen_ErrorPattern_Partition_Disj_Subs { get { throw null; } }
1904         public static string Viewgen_ErrorPattern_Partition_Disj_Subs_Ref { get { throw null; } }
1905         public static string Viewgen_ErrorPattern_Partition_Disj_Unk { get { throw null; } }
1906         public static string Viewgen_ErrorPattern_Partition_Eq_Disj { get { throw null; } }
1907         public static string Viewgen_ErrorPattern_Partition_Eq_Subs { get { throw null; } }
1908         public static string Viewgen_ErrorPattern_Partition_Eq_Subs_Ref { get { throw null; } }
1909         public static string Viewgen_ErrorPattern_Partition_Eq_Unk { get { throw null; } }
1910         public static string Viewgen_ErrorPattern_Partition_Eq_Unk_Association { get { throw null; } }
1911         public static string Viewgen_ErrorPattern_Partition_Sub_Disj { get { throw null; } }
1912         public static string Viewgen_ErrorPattern_Partition_Sub_Eq { get { throw null; } }
1913         public static string Viewgen_ErrorPattern_Partition_Sub_Eq_Ref { get { throw null; } }
1914         public static string Viewgen_ErrorPattern_Partition_Sub_Unk { get { throw null; } }
1915         public static string ViewGen_Extent { get { throw null; } }
1916         public static string Viewgen_NoJoinKeyOrFK { get { throw null; } }
1917         public static string ViewGen_NotNull { get { throw null; } }
1918         public static string ViewGen_Null { get { throw null; } }
1919         public static string ViewGen_Tuples { get { throw null; } }
1920         public static string WildcardEnumeratorReturnedNull { get { throw null; } }
ADP_CollectionParameterElementIsNull(object p0)1921         public static string ADP_CollectionParameterElementIsNull(object p0) { throw null; }
ADP_CollectionParameterElementIsNullOrEmpty(object p0)1922         public static string ADP_CollectionParameterElementIsNullOrEmpty(object p0) { throw null; }
ADP_ConnectionStringSyntax(object p0)1923         public static string ADP_ConnectionStringSyntax(object p0) { throw null; }
ADP_DataReaderClosed(object p0)1924         public static string ADP_DataReaderClosed(object p0) { throw null; }
ADP_InternalProviderError(object p0)1925         public static string ADP_InternalProviderError(object p0) { throw null; }
ADP_InvalidBufferSizeOrIndex(object p0, object p1)1926         public static string ADP_InvalidBufferSizeOrIndex(object p0, object p1) { throw null; }
ADP_InvalidConnectionOptionValue(object p0)1927         public static string ADP_InvalidConnectionOptionValue(object p0) { throw null; }
ADP_InvalidDataLength(object p0)1928         public static string ADP_InvalidDataLength(object p0) { throw null; }
ADP_InvalidDataReaderMissingColumnForType(object p0, object p1)1929         public static string ADP_InvalidDataReaderMissingColumnForType(object p0, object p1) { throw null; }
ADP_InvalidDataReaderMissingDiscriminatorColumn(object p0, object p1)1930         public static string ADP_InvalidDataReaderMissingDiscriminatorColumn(object p0, object p1) { throw null; }
ADP_InvalidDataReaderUnableToMaterializeNonScalarType(object p0, object p1)1931         public static string ADP_InvalidDataReaderUnableToMaterializeNonScalarType(object p0, object p1) { throw null; }
ADP_InvalidDataType(object p0)1932         public static string ADP_InvalidDataType(object p0) { throw null; }
ADP_InvalidDestinationBufferIndex(object p0, object p1)1933         public static string ADP_InvalidDestinationBufferIndex(object p0, object p1) { throw null; }
ADP_InvalidEnumerationValue(object p0, object p1)1934         public static string ADP_InvalidEnumerationValue(object p0, object p1) { throw null; }
ADP_InvalidSizeValue(object p0)1935         public static string ADP_InvalidSizeValue(object p0) { throw null; }
ADP_InvalidSourceBufferIndex(object p0, object p1)1936         public static string ADP_InvalidSourceBufferIndex(object p0, object p1) { throw null; }
ADP_KeysRequiredForJoinOverNest(object p0)1937         public static string ADP_KeysRequiredForJoinOverNest(object p0) { throw null; }
ADP_KeywordNotSupported(object p0)1938         public static string ADP_KeywordNotSupported(object p0) { throw null; }
ADP_NestingNotSupported(object p0, object p1)1939         public static string ADP_NestingNotSupported(object p0, object p1) { throw null; }
ADP_NonSequentialChunkAccess(object p0, object p1, object p2)1940         public static string ADP_NonSequentialChunkAccess(object p0, object p1, object p2) { throw null; }
ADP_NonSequentialColumnAccess(object p0, object p1)1941         public static string ADP_NonSequentialColumnAccess(object p0, object p1) { throw null; }
ADP_NoQueryMappingView(object p0, object p1)1942         public static string ADP_NoQueryMappingView(object p0, object p1) { throw null; }
ADP_UnknownDataTypeCode(object p0, object p1)1943         public static string ADP_UnknownDataTypeCode(object p0, object p1) { throw null; }
AliasNameAlreadyUsed(object p0)1944         public static string AliasNameAlreadyUsed(object p0) { throw null; }
AliasNameIsAlreadyDefined(object p0)1945         public static string AliasNameIsAlreadyDefined(object p0) { throw null; }
AllArtifactsMustTargetSameProvider_InvariantName(object p0, object p1)1946         public static string AllArtifactsMustTargetSameProvider_InvariantName(object p0, object p1) { throw null; }
AllArtifactsMustTargetSameProvider_ManifestToken(object p0, object p1)1947         public static string AllArtifactsMustTargetSameProvider_ManifestToken(object p0, object p1) { throw null; }
AmbiguousEntityContainerEnd(object p0, object p1)1948         public static string AmbiguousEntityContainerEnd(object p0, object p1) { throw null; }
AmbiguousFunctionAndType(object p0, object p1)1949         public static string AmbiguousFunctionAndType(object p0, object p1) { throw null; }
AmbiguousFunctionOverload(object p0, object p1)1950         public static string AmbiguousFunctionOverload(object p0, object p1) { throw null; }
AmbiguousMetadataMemberName(object p0, object p1, object p2)1951         public static string AmbiguousMetadataMemberName(object p0, object p1, object p2) { throw null; }
ArgumentOutOfRange(object p0)1952         public static string ArgumentOutOfRange(object p0) { throw null; }
ArgumentOutOfRangeExpectedPostiveNumber(object p0)1953         public static string ArgumentOutOfRangeExpectedPostiveNumber(object p0) { throw null; }
ArgumentTypesAreIncompatible(object p0, object p1)1954         public static string ArgumentTypesAreIncompatible(object p0, object p1) { throw null; }
AssemblyMissingFromAssembliesToConsider(object p0)1955         public static string AssemblyMissingFromAssembliesToConsider(object p0) { throw null; }
BadNamespaceOrAlias(object p0)1956         public static string BadNamespaceOrAlias(object p0) { throw null; }
BadNavigationPropertyBadFromRoleType(object p0, object p1, object p2, object p3, object p4)1957         public static string BadNavigationPropertyBadFromRoleType(object p0, object p1, object p2, object p3, object p4) { throw null; }
BadNavigationPropertyRelationshipNotRelationship(object p0)1958         public static string BadNavigationPropertyRelationshipNotRelationship(object p0) { throw null; }
BadNavigationPropertyUndefinedRole(object p0, object p1)1959         public static string BadNavigationPropertyUndefinedRole(object p0, object p1) { throw null; }
BadParameterDirection(object p0, object p1, object p2, object p3)1960         public static string BadParameterDirection(object p0, object p1, object p2, object p3) { throw null; }
BadParameterDirectionForComposableFunctions(object p0, object p1, object p2, object p3)1961         public static string BadParameterDirectionForComposableFunctions(object p0, object p1, object p2, object p3) { throw null; }
BadPrecisionAndScale(object p0, object p1)1962         public static string BadPrecisionAndScale(object p0, object p1) { throw null; }
BetweenLimitsTypesAreNotCompatible(object p0, object p1)1963         public static string BetweenLimitsTypesAreNotCompatible(object p0, object p1) { throw null; }
BetweenLimitsTypesAreNotOrderComparable(object p0, object p1)1964         public static string BetweenLimitsTypesAreNotOrderComparable(object p0, object p1) { throw null; }
BetweenValueIsNotOrderComparable(object p0, object p1)1965         public static string BetweenValueIsNotOrderComparable(object p0, object p1) { throw null; }
BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet(object p0, object p1)1966         public static string BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet(object p0, object p1) { throw null; }
CannotCallNoncomposableFunction(object p0)1967         public static string CannotCallNoncomposableFunction(object p0) { throw null; }
CannotConvertNumericLiteral(object p0, object p1)1968         public static string CannotConvertNumericLiteral(object p0, object p1) { throw null; }
CannotInstantiateAbstractType(object p0)1969         public static string CannotInstantiateAbstractType(object p0) { throw null; }
CannotResolveNameToTypeOrFunction(object p0)1970         public static string CannotResolveNameToTypeOrFunction(object p0) { throw null; }
CannotUseSystemNamespaceAsAlias(object p0)1971         public static string CannotUseSystemNamespaceAsAlias(object p0) { throw null; }
CheckArgumentContainsNullFailed(object p0)1972         public static string CheckArgumentContainsNullFailed(object p0) { throw null; }
CodeGen_ConstructorNoParameterless(object p0)1973         public static string CodeGen_ConstructorNoParameterless(object p0) { throw null; }
Collections_CannotFillTryDifferentMergeOption(object p0, object p1)1974         public static string Collections_CannotFillTryDifferentMergeOption(object p0, object p1) { throw null; }
Collections_ExpectedCollectionGotReference(object p0, object p1, object p2)1975         public static string Collections_ExpectedCollectionGotReference(object p0, object p1, object p2) { throw null; }
Collections_InvalidEntityStateLoad(object p0)1976         public static string Collections_InvalidEntityStateLoad(object p0) { throw null; }
Collections_NoRelationshipSetMatched(object p0)1977         public static string Collections_NoRelationshipSetMatched(object p0) { throw null; }
CompiledELinq_UnsupportedNamedParameterType(object p0, object p1)1978         public static string CompiledELinq_UnsupportedNamedParameterType(object p0, object p1) { throw null; }
CompiledELinq_UnsupportedNamedParameterUseAsType(object p0, object p1)1979         public static string CompiledELinq_UnsupportedNamedParameterUseAsType(object p0, object p1) { throw null; }
CompiledELinq_UnsupportedParameterTypes(object p0)1980         public static string CompiledELinq_UnsupportedParameterTypes(object p0) { throw null; }
ComplexObject_ComplexChangeRequestedOnScalarProperty(object p0)1981         public static string ComplexObject_ComplexChangeRequestedOnScalarProperty(object p0) { throw null; }
ComplexObject_NullableComplexTypesNotSupported(object p0)1982         public static string ComplexObject_NullableComplexTypesNotSupported(object p0) { throw null; }
ComplexTypeAsReturnTypeAndDefinedEntitySet(object p0, object p1)1983         public static string ComplexTypeAsReturnTypeAndDefinedEntitySet(object p0, object p1) { throw null; }
ComplexTypeAsReturnTypeAndNestedComplexProperty(object p0, object p1, object p2)1984         public static string ComplexTypeAsReturnTypeAndNestedComplexProperty(object p0, object p1, object p2) { throw null; }
ConcurrencyRedefinedOnSubTypeOfEntitySetType(object p0, object p1, object p2)1985         public static string ConcurrencyRedefinedOnSubTypeOfEntitySetType(object p0, object p1, object p2) { throw null; }
ConstantFacetSpecifiedInSchema(object p0, object p1)1986         public static string ConstantFacetSpecifiedInSchema(object p0, object p1) { throw null; }
CouldNotResolveIdentifier(object p0)1987         public static string CouldNotResolveIdentifier(object p0) { throw null; }
Cqt_Arithmetic_InvalidUnsignedTypeForUnaryMinus(object p0)1988         public static string Cqt_Arithmetic_InvalidUnsignedTypeForUnaryMinus(object p0) { throw null; }
Cqt_Binary_CollectionsRequired(object p0)1989         public static string Cqt_Binary_CollectionsRequired(object p0) { throw null; }
Cqt_Cast_InvalidCast(object p0, object p1)1990         public static string Cqt_Cast_InvalidCast(object p0, object p1) { throw null; }
Cqt_CommandTree_InvalidParameterName(object p0)1991         public static string Cqt_CommandTree_InvalidParameterName(object p0) { throw null; }
Cqt_Constant_ClrEnumTypeDoesNotMatchEdmEnumType(object p0, object p1, object p2)1992         public static string Cqt_Constant_ClrEnumTypeDoesNotMatchEdmEnumType(object p0, object p1, object p2) { throw null; }
Cqt_Constant_InvalidConstantType(object p0)1993         public static string Cqt_Constant_InvalidConstantType(object p0) { throw null; }
Cqt_Constant_InvalidValueForType(object p0)1994         public static string Cqt_Constant_InvalidValueForType(object p0) { throw null; }
Cqt_Copier_EndNotFound(object p0, object p1)1995         public static string Cqt_Copier_EndNotFound(object p0, object p1) { throw null; }
Cqt_Copier_EntityContainerNotFound(object p0)1996         public static string Cqt_Copier_EntityContainerNotFound(object p0) { throw null; }
Cqt_Copier_EntitySetNotFound(object p0, object p1)1997         public static string Cqt_Copier_EntitySetNotFound(object p0, object p1) { throw null; }
Cqt_Copier_FunctionNotFound(object p0)1998         public static string Cqt_Copier_FunctionNotFound(object p0) { throw null; }
Cqt_Copier_NavPropertyNotFound(object p0, object p1)1999         public static string Cqt_Copier_NavPropertyNotFound(object p0, object p1) { throw null; }
Cqt_Copier_PropertyNotFound(object p0, object p1)2000         public static string Cqt_Copier_PropertyNotFound(object p0, object p1) { throw null; }
Cqt_Copier_TypeNotFound(object p0)2001         public static string Cqt_Copier_TypeNotFound(object p0) { throw null; }
Cqt_CrossJoin_DuplicateVariableNames(object p0, object p1, object p2)2002         public static string Cqt_CrossJoin_DuplicateVariableNames(object p0, object p1, object p2) { throw null; }
Cqt_ExpressionLink_TypeMismatch(object p0, object p1)2003         public static string Cqt_ExpressionLink_TypeMismatch(object p0, object p1) { throw null; }
Cqt_Factory_MethodResultTypeNotSupported(object p0)2004         public static string Cqt_Factory_MethodResultTypeNotSupported(object p0) { throw null; }
Cqt_Factory_NoSuchProperty(object p0, object p1)2005         public static string Cqt_Factory_NoSuchProperty(object p0, object p1) { throw null; }
Cqt_Function_CanonicalFunction_AmbiguousMatch(object p0)2006         public static string Cqt_Function_CanonicalFunction_AmbiguousMatch(object p0) { throw null; }
Cqt_Function_CanonicalFunction_NotFound(object p0)2007         public static string Cqt_Function_CanonicalFunction_NotFound(object p0) { throw null; }
Cqt_General_PolymorphicArgRequired(object p0)2008         public static string Cqt_General_PolymorphicArgRequired(object p0) { throw null; }
Cqt_General_PolymorphicTypeRequired(object p0)2009         public static string Cqt_General_PolymorphicTypeRequired(object p0) { throw null; }
Cqt_General_UnsupportedExpression(object p0)2010         public static string Cqt_General_UnsupportedExpression(object p0) { throw null; }
Cqt_GroupBy_AggregateColumnExistsAsGroupColumn(object p0)2011         public static string Cqt_GroupBy_AggregateColumnExistsAsGroupColumn(object p0) { throw null; }
Cqt_GroupBy_KeyNotEqualityComparable(object p0)2012         public static string Cqt_GroupBy_KeyNotEqualityComparable(object p0) { throw null; }
Cqt_InvalidTypeForSetOperation(object p0, object p1)2013         public static string Cqt_InvalidTypeForSetOperation(object p0, object p1) { throw null; }
Cqt_NewInstance_CannotInstantiateAbstractType(object p0)2014         public static string Cqt_NewInstance_CannotInstantiateAbstractType(object p0) { throw null; }
Cqt_NewInstance_CannotInstantiateMemberlessType(object p0)2015         public static string Cqt_NewInstance_CannotInstantiateMemberlessType(object p0) { throw null; }
Cqt_RelNav_WrongSourceType(object p0)2016         public static string Cqt_RelNav_WrongSourceType(object p0) { throw null; }
Cqt_UDF_FunctionDefinitionGenerationFailed(object p0)2017         public static string Cqt_UDF_FunctionDefinitionGenerationFailed(object p0) { throw null; }
Cqt_UDF_FunctionDefinitionResultTypeMismatch(object p0, object p1, object p2)2018         public static string Cqt_UDF_FunctionDefinitionResultTypeMismatch(object p0, object p1, object p2) { throw null; }
Cqt_UDF_FunctionDefinitionWithCircularReference(object p0)2019         public static string Cqt_UDF_FunctionDefinitionWithCircularReference(object p0) { throw null; }
Cqt_UDF_FunctionHasNoDefinition(object p0)2020         public static string Cqt_UDF_FunctionHasNoDefinition(object p0) { throw null; }
Cqt_Unary_CollectionRequired(object p0)2021         public static string Cqt_Unary_CollectionRequired(object p0) { throw null; }
Cqt_Util_CheckListDuplicateName(object p0, object p1, object p2)2022         public static string Cqt_Util_CheckListDuplicateName(object p0, object p1, object p2) { throw null; }
Cqt_Validator_InvalidIncompatibleParameterReferences(object p0)2023         public static string Cqt_Validator_InvalidIncompatibleParameterReferences(object p0) { throw null; }
Cqt_Validator_InvalidIncorrectDataSpaceMetadata(object p0, object p1)2024         public static string Cqt_Validator_InvalidIncorrectDataSpaceMetadata(object p0, object p1) { throw null; }
Cqt_Validator_InvalidOtherWorkspaceMetadata(object p0)2025         public static string Cqt_Validator_InvalidOtherWorkspaceMetadata(object p0) { throw null; }
Cqt_Validator_VarRefInvalid(object p0)2026         public static string Cqt_Validator_VarRefInvalid(object p0) { throw null; }
Cqt_Validator_VarRefTypeMismatch(object p0)2027         public static string Cqt_Validator_VarRefTypeMismatch(object p0) { throw null; }
CreateRefTypeIdentifierMustBeASubOrSuperType(object p0, object p1)2028         public static string CreateRefTypeIdentifierMustBeASubOrSuperType(object p0, object p1) { throw null; }
CreateRefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1)2029         public static string CreateRefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1) { throw null; }
CtxFunction(object p0)2030         public static string CtxFunction(object p0) { throw null; }
CtxTypeCtor(object p0)2031         public static string CtxTypeCtor(object p0) { throw null; }
CycleInTypeHierarchy(object p0)2032         public static string CycleInTypeHierarchy(object p0) { throw null; }
DeRefArgIsNotOfRefType(object p0)2033         public static string DeRefArgIsNotOfRefType(object p0) { throw null; }
DifferentSchemaVersionInCollection(object p0, object p1, object p2)2034         public static string DifferentSchemaVersionInCollection(object p0, object p1, object p2) { throw null; }
DuplicateAnnotation(object p0, object p1)2035         public static string DuplicateAnnotation(object p0, object p1) { throw null; }
DuplicatedFunctionoverloads(object p0, object p1)2036         public static string DuplicatedFunctionoverloads(object p0, object p1) { throw null; }
DuplicatedInlineFunctionOverload(object p0)2037         public static string DuplicatedInlineFunctionOverload(object p0) { throw null; }
DuplicateEndName(object p0)2038         public static string DuplicateEndName(object p0) { throw null; }
DuplicateEntityContainerMemberName(object p0)2039         public static string DuplicateEntityContainerMemberName(object p0) { throw null; }
DuplicateEntitySetTable(object p0, object p1, object p2)2040         public static string DuplicateEntitySetTable(object p0, object p1, object p2) { throw null; }
DuplicateMemberName(object p0, object p1, object p2)2041         public static string DuplicateMemberName(object p0, object p1, object p2) { throw null; }
DuplicateMemberNameInExtendedEntityContainer(object p0, object p1, object p2)2042         public static string DuplicateMemberNameInExtendedEntityContainer(object p0, object p1, object p2) { throw null; }
DuplicatePropertyNameSpecifiedInEntityKey(object p0, object p1)2043         public static string DuplicatePropertyNameSpecifiedInEntityKey(object p0, object p1) { throw null; }
DuplicationOperation(object p0)2044         public static string DuplicationOperation(object p0) { throw null; }
EdmVersionNotSupportedByRuntime(object p0, object p1)2045         public static string EdmVersionNotSupportedByRuntime(object p0, object p1) { throw null; }
ELinq_EdmFunctionAttributedFunctionWithWrongReturnType(object p0, object p1)2046         public static string ELinq_EdmFunctionAttributedFunctionWithWrongReturnType(object p0, object p1) { throw null; }
ELinq_EdmFunctionAttributeParameterNameNotValid(object p0, object p1, object p2)2047         public static string ELinq_EdmFunctionAttributeParameterNameNotValid(object p0, object p1, object p2) { throw null; }
ELinq_InvalidOfTypeResult(object p0)2048         public static string ELinq_InvalidOfTypeResult(object p0) { throw null; }
ELinq_NotPropertyOrField(object p0)2049         public static string ELinq_NotPropertyOrField(object p0) { throw null; }
ELinq_UnboundParameterExpression(object p0)2050         public static string ELinq_UnboundParameterExpression(object p0) { throw null; }
ELinq_UnexpectedTypeForNavigationProperty(object p0, object p1, object p2, object p3)2051         public static string ELinq_UnexpectedTypeForNavigationProperty(object p0, object p1, object p2, object p3) { throw null; }
ELinq_UnhandledBindingType(object p0)2052         public static string ELinq_UnhandledBindingType(object p0) { throw null; }
ELinq_UnhandledExpressionType(object p0)2053         public static string ELinq_UnhandledExpressionType(object p0) { throw null; }
ELinq_UnrecognizedMember(object p0)2054         public static string ELinq_UnrecognizedMember(object p0) { throw null; }
ELinq_UnresolvableFunctionForExpression(object p0)2055         public static string ELinq_UnresolvableFunctionForExpression(object p0) { throw null; }
ELinq_UnresolvableFunctionForMember(object p0, object p1)2056         public static string ELinq_UnresolvableFunctionForMember(object p0, object p1) { throw null; }
ELinq_UnresolvableFunctionForMethod(object p0, object p1)2057         public static string ELinq_UnresolvableFunctionForMethod(object p0, object p1) { throw null; }
ELinq_UnresolvableFunctionForMethodAmbiguousMatch(object p0, object p1)2058         public static string ELinq_UnresolvableFunctionForMethodAmbiguousMatch(object p0, object p1) { throw null; }
ELinq_UnresolvableFunctionForMethodNotFound(object p0, object p1)2059         public static string ELinq_UnresolvableFunctionForMethodNotFound(object p0, object p1) { throw null; }
ELinq_UnresolvableStoreFunctionForExpression(object p0)2060         public static string ELinq_UnresolvableStoreFunctionForExpression(object p0) { throw null; }
ELinq_UnresolvableStoreFunctionForMember(object p0, object p1)2061         public static string ELinq_UnresolvableStoreFunctionForMember(object p0, object p1) { throw null; }
ELinq_UnsupportedAsUnicodeAndAsNonUnicode(object p0)2062         public static string ELinq_UnsupportedAsUnicodeAndAsNonUnicode(object p0) { throw null; }
ELinq_UnsupportedCast(object p0, object p1)2063         public static string ELinq_UnsupportedCast(object p0, object p1) { throw null; }
ELinq_UnsupportedComparison(object p0)2064         public static string ELinq_UnsupportedComparison(object p0) { throw null; }
ELinq_UnsupportedConstant(object p0)2065         public static string ELinq_UnsupportedConstant(object p0) { throw null; }
ELinq_UnsupportedEnumerableType(object p0)2066         public static string ELinq_UnsupportedEnumerableType(object p0) { throw null; }
ELinq_UnsupportedExpressionType(object p0)2067         public static string ELinq_UnsupportedExpressionType(object p0) { throw null; }
ELinq_UnsupportedHeterogeneousInitializers(object p0)2068         public static string ELinq_UnsupportedHeterogeneousInitializers(object p0) { throw null; }
ELinq_UnsupportedIsOrAs(object p0, object p1, object p2)2069         public static string ELinq_UnsupportedIsOrAs(object p0, object p1, object p2) { throw null; }
ELinq_UnsupportedKeySelector(object p0)2070         public static string ELinq_UnsupportedKeySelector(object p0) { throw null; }
ELinq_UnsupportedMethod(object p0)2071         public static string ELinq_UnsupportedMethod(object p0) { throw null; }
ELinq_UnsupportedMethodSuggestedAlternative(object p0, object p1)2072         public static string ELinq_UnsupportedMethodSuggestedAlternative(object p0, object p1) { throw null; }
ELinq_UnsupportedNominalType(object p0)2073         public static string ELinq_UnsupportedNominalType(object p0) { throw null; }
ELinq_UnsupportedNullConstant(object p0)2074         public static string ELinq_UnsupportedNullConstant(object p0) { throw null; }
ELinq_UnsupportedPassthrough(object p0, object p1)2075         public static string ELinq_UnsupportedPassthrough(object p0, object p1) { throw null; }
ELinq_UnsupportedRefComparison(object p0, object p1)2076         public static string ELinq_UnsupportedRefComparison(object p0, object p1) { throw null; }
ELinq_UnsupportedRowComparison(object p0)2077         public static string ELinq_UnsupportedRowComparison(object p0) { throw null; }
ELinq_UnsupportedRowMemberComparison(object p0)2078         public static string ELinq_UnsupportedRowMemberComparison(object p0) { throw null; }
ELinq_UnsupportedRowTypeComparison(object p0)2079         public static string ELinq_UnsupportedRowTypeComparison(object p0) { throw null; }
ELinq_UnsupportedStringRemoveCase(object p0, object p1)2080         public static string ELinq_UnsupportedStringRemoveCase(object p0, object p1) { throw null; }
ELinq_UnsupportedTrimStartTrimEndCase(object p0)2081         public static string ELinq_UnsupportedTrimStartTrimEndCase(object p0) { throw null; }
ELinq_UnsupportedType(object p0)2082         public static string ELinq_UnsupportedType(object p0) { throw null; }
ELinq_UnsupportedUseOfContextParameter(object p0)2083         public static string ELinq_UnsupportedUseOfContextParameter(object p0) { throw null; }
ELinq_UnsupportedVBDatePartInvalidInterval(object p0, object p1, object p2)2084         public static string ELinq_UnsupportedVBDatePartInvalidInterval(object p0, object p1, object p2) { throw null; }
ELinq_UnsupportedVBDatePartNonConstantInterval(object p0, object p1)2085         public static string ELinq_UnsupportedVBDatePartNonConstantInterval(object p0, object p1) { throw null; }
EmptyFile(object p0)2086         public static string EmptyFile(object p0) { throw null; }
EmptyName(object p0)2087         public static string EmptyName(object p0) { throw null; }
EndNameAlreadyDefinedDuplicate(object p0)2088         public static string EndNameAlreadyDefinedDuplicate(object p0) { throw null; }
EndWithManyMultiplicityCannotHaveOperationsSpecified(object p0, object p1)2089         public static string EndWithManyMultiplicityCannotHaveOperationsSpecified(object p0, object p1) { throw null; }
EndWithoutMultiplicity(object p0, object p1)2090         public static string EndWithoutMultiplicity(object p0, object p1) { throw null; }
EntityClient_ConnectionStringMissingInfo(object p0)2091         public static string EntityClient_ConnectionStringMissingInfo(object p0) { throw null; }
EntityClient_DbConnectionHasNoProvider(object p0)2092         public static string EntityClient_DbConnectionHasNoProvider(object p0) { throw null; }
EntityClient_DoesNotImplementIServiceProvider(object p0)2093         public static string EntityClient_DoesNotImplementIServiceProvider(object p0) { throw null; }
EntityClient_DuplicateParameterNames(object p0)2094         public static string EntityClient_DuplicateParameterNames(object p0) { throw null; }
EntityClient_EntityParameterEdmTypeNotScalar(object p0)2095         public static string EntityClient_EntityParameterEdmTypeNotScalar(object p0) { throw null; }
EntityClient_EntityParameterInconsistentEdmType(object p0, object p1)2096         public static string EntityClient_EntityParameterInconsistentEdmType(object p0, object p1) { throw null; }
EntityClient_ExecutingOnClosedConnection(object p0)2097         public static string EntityClient_ExecutingOnClosedConnection(object p0) { throw null; }
EntityClient_FailedToGetInformation(object p0)2098         public static string EntityClient_FailedToGetInformation(object p0) { throw null; }
EntityClient_FunctionImportMustBeNonComposable(object p0)2099         public static string EntityClient_FunctionImportMustBeNonComposable(object p0) { throw null; }
EntityClient_IncompatibleNavigationPropertyResult(object p0, object p1)2100         public static string EntityClient_IncompatibleNavigationPropertyResult(object p0, object p1) { throw null; }
EntityClient_InvalidParameterDirection(object p0)2101         public static string EntityClient_InvalidParameterDirection(object p0) { throw null; }
EntityClient_InvalidParameterName(object p0)2102         public static string EntityClient_InvalidParameterName(object p0) { throw null; }
EntityClient_ItemCollectionsNotRegisteredInWorkspace(object p0)2103         public static string EntityClient_ItemCollectionsNotRegisteredInWorkspace(object p0) { throw null; }
EntityClient_KeywordNotSupported(object p0)2104         public static string EntityClient_KeywordNotSupported(object p0) { throw null; }
EntityClient_NestedNamedConnection(object p0)2105         public static string EntityClient_NestedNamedConnection(object p0) { throw null; }
EntityClient_ProviderSpecificError(object p0)2106         public static string EntityClient_ProviderSpecificError(object p0) { throw null; }
EntityClient_ReturnedNullOnProviderMethod(object p0, object p1)2107         public static string EntityClient_ReturnedNullOnProviderMethod(object p0, object p1) { throw null; }
EntityClient_UnableToFindFunctionImport(object p0, object p1)2108         public static string EntityClient_UnableToFindFunctionImport(object p0, object p1) { throw null; }
EntityClient_UnableToFindFunctionImportContainer(object p0)2109         public static string EntityClient_UnableToFindFunctionImportContainer(object p0) { throw null; }
EntityClient_UnknownParameterType(object p0)2110         public static string EntityClient_UnknownParameterType(object p0) { throw null; }
EntityClient_UnmappedFunctionImport(object p0)2111         public static string EntityClient_UnmappedFunctionImport(object p0) { throw null; }
EntityClient_UnsupportedDbType(object p0, object p1)2112         public static string EntityClient_UnsupportedDbType(object p0, object p1) { throw null; }
EntityContainerAlreadyExists(object p0)2113         public static string EntityContainerAlreadyExists(object p0) { throw null; }
EntityContainerCannotExtendItself(object p0)2114         public static string EntityContainerCannotExtendItself(object p0) { throw null; }
EntityKeyMustBeScalar(object p0, object p1)2115         public static string EntityKeyMustBeScalar(object p0, object p1) { throw null; }
EntityKeyTypeCurrentlyNotSupported(object p0, object p1, object p2)2116         public static string EntityKeyTypeCurrentlyNotSupported(object p0, object p1, object p2) { throw null; }
EntityKeyTypeCurrentlyNotSupportedInSSDL(object p0, object p1, object p2, object p3, object p4)2117         public static string EntityKeyTypeCurrentlyNotSupportedInSSDL(object p0, object p1, object p2, object p3, object p4) { throw null; }
EntityKey_DoesntMatchKeyOnEntity(object p0)2118         public static string EntityKey_DoesntMatchKeyOnEntity(object p0) { throw null; }
EntityKey_EntitySetDoesNotMatch(object p0)2119         public static string EntityKey_EntitySetDoesNotMatch(object p0) { throw null; }
EntityKey_EntityTypesDoNotMatch(object p0, object p1)2120         public static string EntityKey_EntityTypesDoNotMatch(object p0, object p1) { throw null; }
EntityKey_IncorrectNumberOfKeyValuePairs(object p0, object p1, object p2)2121         public static string EntityKey_IncorrectNumberOfKeyValuePairs(object p0, object p1, object p2) { throw null; }
EntityKey_IncorrectValueType(object p0, object p1, object p2)2122         public static string EntityKey_IncorrectValueType(object p0, object p1, object p2) { throw null; }
EntityKey_InvalidName(object p0)2123         public static string EntityKey_InvalidName(object p0) { throw null; }
EntityKey_MissingKeyValue(object p0, object p1)2124         public static string EntityKey_MissingKeyValue(object p0, object p1) { throw null; }
EntityKey_NoCorrespondingOSpaceTypeForEnumKeyMember(object p0, object p1)2125         public static string EntityKey_NoCorrespondingOSpaceTypeForEnumKeyMember(object p0, object p1) { throw null; }
EntityKey_NullKeyValue(object p0, object p1)2126         public static string EntityKey_NullKeyValue(object p0, object p1) { throw null; }
EntityParameterCollectionInvalidIndex(object p0, object p1)2127         public static string EntityParameterCollectionInvalidIndex(object p0, object p1) { throw null; }
EntityParameterCollectionInvalidParameterName(object p0)2128         public static string EntityParameterCollectionInvalidParameterName(object p0) { throw null; }
EntityProxyTypeInfo_CannotSetEntityCollectionProperty(object p0, object p1)2129         public static string EntityProxyTypeInfo_CannotSetEntityCollectionProperty(object p0, object p1) { throw null; }
EntityProxyTypeInfo_DuplicateOSpaceType(object p0)2130         public static string EntityProxyTypeInfo_DuplicateOSpaceType(object p0) { throw null; }
EntityProxyTypeInfo_ProxyMetadataIsUnavailable(object p0)2131         public static string EntityProxyTypeInfo_ProxyMetadataIsUnavailable(object p0) { throw null; }
EntityReference_CannotAddMoreThanOneEntityToEntityReference(object p0, object p1)2132         public static string EntityReference_CannotAddMoreThanOneEntityToEntityReference(object p0, object p1) { throw null; }
EntityReference_ExpectedReferenceGotCollection(object p0, object p1, object p2)2133         public static string EntityReference_ExpectedReferenceGotCollection(object p0, object p1, object p2) { throw null; }
EntitySetNotInCSPace(object p0)2134         public static string EntitySetNotInCSPace(object p0) { throw null; }
EntitySetTypeHasNoKeys(object p0, object p1)2135         public static string EntitySetTypeHasNoKeys(object p0, object p1) { throw null; }
EnumMemberValueOutOfItsUnderylingTypeRange(object p0, object p1, object p2)2136         public static string EnumMemberValueOutOfItsUnderylingTypeRange(object p0, object p1, object p2) { throw null; }
ExpressionTypeMustBeEntityType(object p0, object p1, object p2)2137         public static string ExpressionTypeMustBeEntityType(object p0, object p1, object p2) { throw null; }
ExpressionTypeMustBeNominalType(object p0, object p1, object p2)2138         public static string ExpressionTypeMustBeNominalType(object p0, object p1, object p2) { throw null; }
FacetNotAllowed(object p0, object p1)2139         public static string FacetNotAllowed(object p0, object p1) { throw null; }
FacetsOnNonScalarType(object p0)2140         public static string FacetsOnNonScalarType(object p0) { throw null; }
FailedToFindClrTypeMapping(object p0)2141         public static string FailedToFindClrTypeMapping(object p0) { throw null; }
FailedToFindCSpaceTypeMapping(object p0)2142         public static string FailedToFindCSpaceTypeMapping(object p0) { throw null; }
FailedToFindOSpaceTypeMapping(object p0)2143         public static string FailedToFindOSpaceTypeMapping(object p0) { throw null; }
FailedToResolveAggregateFunction(object p0)2144         public static string FailedToResolveAggregateFunction(object p0) { throw null; }
FunctionImportCollectionAndRefParametersNotAllowed(object p0)2145         public static string FunctionImportCollectionAndRefParametersNotAllowed(object p0) { throw null; }
FunctionImportComposableAndSideEffectingNotAllowed(object p0)2146         public static string FunctionImportComposableAndSideEffectingNotAllowed(object p0) { throw null; }
FunctionImportEntitySetAndEntitySetPathDeclared(object p0)2147         public static string FunctionImportEntitySetAndEntitySetPathDeclared(object p0) { throw null; }
FunctionImportEntityTypeDoesNotMatchEntitySet(object p0, object p1, object p2)2148         public static string FunctionImportEntityTypeDoesNotMatchEntitySet(object p0, object p1, object p2) { throw null; }
FunctionImportNonNullableParametersNotAllowed(object p0)2149         public static string FunctionImportNonNullableParametersNotAllowed(object p0) { throw null; }
FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet(object p0)2150         public static string FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet(object p0) { throw null; }
FunctionImportSpecifiesEntitySetButNotEntityType(object p0)2151         public static string FunctionImportSpecifiesEntitySetButNotEntityType(object p0) { throw null; }
FunctionImportUnknownEntitySet(object p0, object p1)2152         public static string FunctionImportUnknownEntitySet(object p0, object p1) { throw null; }
FunctionImportWithUnsupportedReturnTypeV1(object p0)2153         public static string FunctionImportWithUnsupportedReturnTypeV1(object p0) { throw null; }
FunctionImportWithUnsupportedReturnTypeV1_1(object p0)2154         public static string FunctionImportWithUnsupportedReturnTypeV1_1(object p0) { throw null; }
FunctionImportWithUnsupportedReturnTypeV2(object p0)2155         public static string FunctionImportWithUnsupportedReturnTypeV2(object p0) { throw null; }
FunctionWithNonEdmPrimitiveTypeNotSupported(object p0, object p1)2156         public static string FunctionWithNonEdmPrimitiveTypeNotSupported(object p0, object p1) { throw null; }
FunctionWithNonPrimitiveTypeNotSupported(object p0, object p1)2157         public static string FunctionWithNonPrimitiveTypeNotSupported(object p0, object p1) { throw null; }
GeneralExceptionAsQueryInnerException(object p0)2158         public static string GeneralExceptionAsQueryInnerException(object p0) { throw null; }
Generated_Views_Invalid_Extent(object p0)2159         public static string Generated_Views_Invalid_Extent(object p0) { throw null; }
Generated_View_Type_Super_Class(object p0)2160         public static string Generated_View_Type_Super_Class(object p0) { throw null; }
GenericTypeNotSupported(object p0)2161         public static string GenericTypeNotSupported(object p0) { throw null; }
InferRelationshipEndAmbiguous(object p0, object p1, object p2, object p3, object p4)2162         public static string InferRelationshipEndAmbiguous(object p0, object p1, object p2, object p3, object p4) { throw null; }
InferRelationshipEndFailedNoEntitySetMatch(object p0, object p1, object p2, object p3, object p4)2163         public static string InferRelationshipEndFailedNoEntitySetMatch(object p0, object p1, object p2, object p3, object p4) { throw null; }
InferRelationshipEndGivesAlreadyDefinedEnd(object p0, object p1)2164         public static string InferRelationshipEndGivesAlreadyDefinedEnd(object p0, object p1) { throw null; }
InvalidAction(object p0, object p1)2165         public static string InvalidAction(object p0, object p1) { throw null; }
InvalidAliasName(object p0)2166         public static string InvalidAliasName(object p0) { throw null; }
InvalidAssociationTypeForUnion(object p0)2167         public static string InvalidAssociationTypeForUnion(object p0) { throw null; }
InvalidBaseTypeForItemType(object p0, object p1)2168         public static string InvalidBaseTypeForItemType(object p0, object p1) { throw null; }
InvalidBaseTypeForNestedType(object p0, object p1)2169         public static string InvalidBaseTypeForNestedType(object p0, object p1) { throw null; }
InvalidBaseTypeForStructuredType(object p0, object p1)2170         public static string InvalidBaseTypeForStructuredType(object p0, object p1) { throw null; }
InvalidCast(object p0, object p1)2171         public static string InvalidCast(object p0, object p1) { throw null; }
InvalidCollectionForMapping(object p0)2172         public static string InvalidCollectionForMapping(object p0) { throw null; }
InvalidCollectionSpecified(object p0)2173         public static string InvalidCollectionSpecified(object p0) { throw null; }
InvalidComplexType(object p0, object p1, object p2, object p3)2174         public static string InvalidComplexType(object p0, object p1, object p2, object p3) { throw null; }
InvalidCtorArgumentType(object p0, object p1, object p2)2175         public static string InvalidCtorArgumentType(object p0, object p1, object p2) { throw null; }
InvalidCtorUseOnType(object p0)2176         public static string InvalidCtorUseOnType(object p0) { throw null; }
InvalidDateTimeOffsetLiteral(object p0)2177         public static string InvalidDateTimeOffsetLiteral(object p0) { throw null; }
InvalidDay(object p0, object p1)2178         public static string InvalidDay(object p0, object p1) { throw null; }
InvalidDayInMonth(object p0, object p1, object p2)2179         public static string InvalidDayInMonth(object p0, object p1, object p2) { throw null; }
InvalidDefaultBinaryWithNoMaxLength(object p0)2180         public static string InvalidDefaultBinaryWithNoMaxLength(object p0) { throw null; }
InvalidDefaultBoolean(object p0)2181         public static string InvalidDefaultBoolean(object p0) { throw null; }
InvalidDefaultDateTime(object p0, object p1)2182         public static string InvalidDefaultDateTime(object p0, object p1) { throw null; }
InvalidDefaultDateTimeOffset(object p0, object p1)2183         public static string InvalidDefaultDateTimeOffset(object p0, object p1) { throw null; }
InvalidDefaultDecimal(object p0, object p1, object p2)2184         public static string InvalidDefaultDecimal(object p0, object p1, object p2) { throw null; }
InvalidDefaultFloatingPoint(object p0, object p1, object p2)2185         public static string InvalidDefaultFloatingPoint(object p0, object p1, object p2) { throw null; }
InvalidDefaultGuid(object p0)2186         public static string InvalidDefaultGuid(object p0) { throw null; }
InvalidDefaultIntegral(object p0, object p1, object p2)2187         public static string InvalidDefaultIntegral(object p0, object p1, object p2) { throw null; }
InvalidDefaultTime(object p0, object p1)2188         public static string InvalidDefaultTime(object p0, object p1) { throw null; }
InvalidDeRefProperty(object p0, object p1, object p2)2189         public static string InvalidDeRefProperty(object p0, object p1, object p2) { throw null; }
InvalidEDMVersion(object p0)2190         public static string InvalidEDMVersion(object p0) { throw null; }
InvalidEndEntitySetTypeMismatch(object p0)2191         public static string InvalidEndEntitySetTypeMismatch(object p0) { throw null; }
InvalidEndRoleInRelationshipConstraint(object p0, object p1)2192         public static string InvalidEndRoleInRelationshipConstraint(object p0, object p1) { throw null; }
InvalidEntityContainerNameInExtends(object p0)2193         public static string InvalidEntityContainerNameInExtends(object p0) { throw null; }
InvalidEntityEndName(object p0, object p1)2194         public static string InvalidEntityEndName(object p0, object p1) { throw null; }
InvalidEntityParameterType(object p0)2195         public static string InvalidEntityParameterType(object p0) { throw null; }
InvalidEntityRootTypeArgument(object p0, object p1)2196         public static string InvalidEntityRootTypeArgument(object p0, object p1) { throw null; }
InvalidEntitySetName(object p0)2197         public static string InvalidEntitySetName(object p0) { throw null; }
InvalidEntitySetNameReference(object p0, object p1)2198         public static string InvalidEntitySetNameReference(object p0, object p1) { throw null; }
InvalidEntitySetType(object p0)2199         public static string InvalidEntitySetType(object p0) { throw null; }
InvalidEntityTypeArgument(object p0, object p1, object p2, object p3)2200         public static string InvalidEntityTypeArgument(object p0, object p1, object p2, object p3) { throw null; }
InvalidEscapedIdentifier(object p0)2201         public static string InvalidEscapedIdentifier(object p0) { throw null; }
InvalidEscapedIdentifierUnbalanced(object p0)2202         public static string InvalidEscapedIdentifierUnbalanced(object p0) { throw null; }
InvalidExpressionResolutionClass(object p0, object p1)2203         public static string InvalidExpressionResolutionClass(object p0, object p1) { throw null; }
InvalidFileExtension(object p0, object p1, object p2)2204         public static string InvalidFileExtension(object p0, object p1, object p2) { throw null; }
InvalidFromPropertyInRelationshipConstraint(object p0, object p1, object p2)2205         public static string InvalidFromPropertyInRelationshipConstraint(object p0, object p1, object p2) { throw null; }
InvalidGroupIdentifierReference(object p0)2206         public static string InvalidGroupIdentifierReference(object p0) { throw null; }
InvalidHour(object p0, object p1)2207         public static string InvalidHour(object p0, object p1) { throw null; }
InvalidImplicitRelationshipFromEnd(object p0)2208         public static string InvalidImplicitRelationshipFromEnd(object p0) { throw null; }
InvalidImplicitRelationshipToEnd(object p0)2209         public static string InvalidImplicitRelationshipToEnd(object p0) { throw null; }
InvalidInExprArgs(object p0, object p1)2210         public static string InvalidInExprArgs(object p0, object p1) { throw null; }
InvalidKeyArgument(object p0)2211         public static string InvalidKeyArgument(object p0) { throw null; }
InvalidKeyKeyDefinedInBaseClass(object p0, object p1)2212         public static string InvalidKeyKeyDefinedInBaseClass(object p0, object p1) { throw null; }
InvalidKeyMember(object p0)2213         public static string InvalidKeyMember(object p0) { throw null; }
InvalidKeyNoProperty(object p0, object p1)2214         public static string InvalidKeyNoProperty(object p0, object p1) { throw null; }
InvalidKeyNullablePart(object p0, object p1)2215         public static string InvalidKeyNullablePart(object p0, object p1) { throw null; }
InvalidKeyTypeForCollation(object p0)2216         public static string InvalidKeyTypeForCollation(object p0) { throw null; }
InvalidLiteralFormat(object p0, object p1)2217         public static string InvalidLiteralFormat(object p0, object p1) { throw null; }
InvalidMemberNameMatchesTypeName(object p0, object p1)2218         public static string InvalidMemberNameMatchesTypeName(object p0, object p1) { throw null; }
InvalidMetadataMemberClassResolution(object p0, object p1, object p2)2219         public static string InvalidMetadataMemberClassResolution(object p0, object p1, object p2) { throw null; }
InvalidMinute(object p0, object p1)2220         public static string InvalidMinute(object p0, object p1) { throw null; }
InvalidMonth(object p0, object p1)2221         public static string InvalidMonth(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleToPropertyNonNullableV1(object p0, object p1)2222         public static string InvalidMultiplicityFromRoleToPropertyNonNullableV1(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleToPropertyNonNullableV2(object p0, object p1)2223         public static string InvalidMultiplicityFromRoleToPropertyNonNullableV2(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleToPropertyNullableV1(object p0, object p1)2224         public static string InvalidMultiplicityFromRoleToPropertyNullableV1(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleUpperBoundMustBeOne(object p0, object p1)2225         public static string InvalidMultiplicityFromRoleUpperBoundMustBeOne(object p0, object p1) { throw null; }
InvalidMultiplicityToRoleLowerBoundMustBeZero(object p0, object p1)2226         public static string InvalidMultiplicityToRoleLowerBoundMustBeZero(object p0, object p1) { throw null; }
InvalidMultiplicityToRoleUpperBoundMustBeMany(object p0, object p1)2227         public static string InvalidMultiplicityToRoleUpperBoundMustBeMany(object p0, object p1) { throw null; }
InvalidMultiplicityToRoleUpperBoundMustBeOne(object p0, object p1)2228         public static string InvalidMultiplicityToRoleUpperBoundMustBeOne(object p0, object p1) { throw null; }
InvalidName(object p0, object p1)2229         public static string InvalidName(object p0, object p1) { throw null; }
InvalidNamespaceInUsing(object p0)2230         public static string InvalidNamespaceInUsing(object p0) { throw null; }
InvalidNamespaceOrAliasSpecified(object p0)2231         public static string InvalidNamespaceOrAliasSpecified(object p0) { throw null; }
InvalidNullLiteralForNonNullableMember(object p0, object p1)2232         public static string InvalidNullLiteralForNonNullableMember(object p0, object p1) { throw null; }
InvalidNumberOfParametersForAggregateFunction(object p0)2233         public static string InvalidNumberOfParametersForAggregateFunction(object p0) { throw null; }
InvalidParameterFormat(object p0)2234         public static string InvalidParameterFormat(object p0) { throw null; }
InvalidParameterTypeForAggregateFunction(object p0, object p1)2235         public static string InvalidParameterTypeForAggregateFunction(object p0, object p1) { throw null; }
InvalidPlaceholderRootTypeArgument(object p0, object p1, object p2, object p3)2236         public static string InvalidPlaceholderRootTypeArgument(object p0, object p1, object p2, object p3) { throw null; }
InvalidPlaceholderTypeArgument(object p0, object p1, object p2, object p3, object p4, object p5)2237         public static string InvalidPlaceholderTypeArgument(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
InvalidPrimitiveTypeKind(object p0)2238         public static string InvalidPrimitiveTypeKind(object p0) { throw null; }
InvalidPropertyInRelationshipConstraint(object p0, object p1)2239         public static string InvalidPropertyInRelationshipConstraint(object p0, object p1) { throw null; }
InvalidPropertyType(object p0)2240         public static string InvalidPropertyType(object p0) { throw null; }
InvalidQueryResultType(object p0)2241         public static string InvalidQueryResultType(object p0) { throw null; }
InvalidRelationshipEndMultiplicity(object p0, object p1)2242         public static string InvalidRelationshipEndMultiplicity(object p0, object p1) { throw null; }
InvalidRelationshipEndType(object p0, object p1)2243         public static string InvalidRelationshipEndType(object p0, object p1) { throw null; }
InvalidRelationshipMember(object p0, object p1)2244         public static string InvalidRelationshipMember(object p0, object p1) { throw null; }
InvalidRelationshipSetName(object p0)2245         public static string InvalidRelationshipSetName(object p0) { throw null; }
InvalidRelationshipSetType(object p0)2246         public static string InvalidRelationshipSetType(object p0) { throw null; }
InvalidRootComplexType(object p0, object p1)2247         public static string InvalidRootComplexType(object p0, object p1) { throw null; }
InvalidRootRowType(object p0, object p1)2248         public static string InvalidRootRowType(object p0, object p1) { throw null; }
InvalidRowType(object p0, object p1, object p2, object p3)2249         public static string InvalidRowType(object p0, object p1, object p2, object p3) { throw null; }
InvalidSchemaEncountered(object p0)2250         public static string InvalidSchemaEncountered(object p0) { throw null; }
InvalidSecond(object p0, object p1)2251         public static string InvalidSecond(object p0, object p1) { throw null; }
InvalidSimpleIdentifier(object p0)2252         public static string InvalidSimpleIdentifier(object p0) { throw null; }
InvalidSimpleIdentifierNonASCII(object p0)2253         public static string InvalidSimpleIdentifierNonASCII(object p0) { throw null; }
InvalidSize(object p0, object p1, object p2, object p3)2254         public static string InvalidSize(object p0, object p1, object p2, object p3) { throw null; }
InvalidStringArgument(object p0)2255         public static string InvalidStringArgument(object p0) { throw null; }
InvalidSystemReferenceId(object p0, object p1, object p2, object p3)2256         public static string InvalidSystemReferenceId(object p0, object p1, object p2, object p3) { throw null; }
InvalidToPropertyInRelationshipConstraint(object p0, object p1, object p2)2257         public static string InvalidToPropertyInRelationshipConstraint(object p0, object p1, object p2) { throw null; }
InvalidUnarySetOpArgument(object p0)2258         public static string InvalidUnarySetOpArgument(object p0) { throw null; }
InvalidUnsignedTypeForUnaryMinusOperation(object p0)2259         public static string InvalidUnsignedTypeForUnaryMinusOperation(object p0) { throw null; }
InvalidUseOfWebPath(object p0)2260         public static string InvalidUseOfWebPath(object p0) { throw null; }
InvalidValueForParameterTypeSemanticsAttribute(object p0)2261         public static string InvalidValueForParameterTypeSemanticsAttribute(object p0) { throw null; }
InvalidWithRelationshipTargetEndMultiplicity(object p0, object p1)2262         public static string InvalidWithRelationshipTargetEndMultiplicity(object p0, object p1) { throw null; }
InvalidYear(object p0, object p1)2263         public static string InvalidYear(object p0, object p1) { throw null; }
Iqt_General_UnsupportedOp(object p0)2264         public static string Iqt_General_UnsupportedOp(object p0) { throw null; }
ItemCollectionAlreadyRegistered(object p0)2265         public static string ItemCollectionAlreadyRegistered(object p0) { throw null; }
ItemDuplicateIdentity(object p0)2266         public static string ItemDuplicateIdentity(object p0) { throw null; }
ItemInvalidIdentity(object p0)2267         public static string ItemInvalidIdentity(object p0) { throw null; }
KeyMissingOnEntityType(object p0)2268         public static string KeyMissingOnEntityType(object p0) { throw null; }
KeyMustBeCorrelated(object p0)2269         public static string KeyMustBeCorrelated(object p0) { throw null; }
LiteralTypeNotFoundInMetadata(object p0)2270         public static string LiteralTypeNotFoundInMetadata(object p0) { throw null; }
LiteralTypeNotSupported(object p0)2271         public static string LiteralTypeNotSupported(object p0) { throw null; }
MalformedXml(object p0, object p1)2272         public static string MalformedXml(object p0, object p1) { throw null; }
Mapping_AbstractTypeMappingToNonAbstractType(object p0, object p1)2273         public static string Mapping_AbstractTypeMappingToNonAbstractType(object p0, object p1) { throw null; }
Mapping_AllQueryViewAtCompileTime(object p0)2274         public static string Mapping_AllQueryViewAtCompileTime(object p0) { throw null; }
Mapping_AlreadyMapped_StorageEntityContainer(object p0)2275         public static string Mapping_AlreadyMapped_StorageEntityContainer(object p0) { throw null; }
Mapping_CannotMapCLRTypeMultipleTimes(object p0)2276         public static string Mapping_CannotMapCLRTypeMultipleTimes(object p0) { throw null; }
Mapping_Default_OCMapping_Clr_Member(object p0, object p1, object p2)2277         public static string Mapping_Default_OCMapping_Clr_Member(object p0, object p1, object p2) { throw null; }
Mapping_Default_OCMapping_Clr_Member2(object p0, object p1, object p2)2278         public static string Mapping_Default_OCMapping_Clr_Member2(object p0, object p1, object p2) { throw null; }
Mapping_Default_OCMapping_Invalid_MemberType(object p0, object p1, object p2, object p3, object p4, object p5)2279         public static string Mapping_Default_OCMapping_Invalid_MemberType(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
Mapping_Default_OCMapping_MemberKind_Mismatch(object p0, object p1, object p2, object p3, object p4, object p5)2280         public static string Mapping_Default_OCMapping_MemberKind_Mismatch(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
Mapping_Default_OCMapping_Member_Count_Mismatch(object p0, object p1)2281         public static string Mapping_Default_OCMapping_Member_Count_Mismatch(object p0, object p1) { throw null; }
Mapping_Default_OCMapping_MultiplicityMismatch(object p0, object p1, object p2, object p3, object p4, object p5)2282         public static string Mapping_Default_OCMapping_MultiplicityMismatch(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
Mapping_Duplicate_CdmAssociationSet_StorageMap(object p0)2283         public static string Mapping_Duplicate_CdmAssociationSet_StorageMap(object p0) { throw null; }
Mapping_Duplicate_PropertyMap_CaseInsensitive(object p0)2284         public static string Mapping_Duplicate_PropertyMap_CaseInsensitive(object p0) { throw null; }
Mapping_Duplicate_Type(object p0)2285         public static string Mapping_Duplicate_Type(object p0) { throw null; }
Mapping_Empty_QueryView(object p0)2286         public static string Mapping_Empty_QueryView(object p0) { throw null; }
Mapping_Empty_QueryView_OfType(object p0, object p1)2287         public static string Mapping_Empty_QueryView_OfType(object p0, object p1) { throw null; }
Mapping_Empty_QueryView_OfTypeOnly(object p0, object p1)2288         public static string Mapping_Empty_QueryView_OfTypeOnly(object p0, object p1) { throw null; }
Mapping_EntitySetMismatchOnAssociationSetEnd_QueryView(object p0, object p1, object p2, object p3)2289         public static string Mapping_EntitySetMismatchOnAssociationSetEnd_QueryView(object p0, object p1, object p2, object p3) { throw null; }
Mapping_EnumTypeMappingToNonEnumType(object p0, object p1)2290         public static string Mapping_EnumTypeMappingToNonEnumType(object p0, object p1) { throw null; }
Mapping_Enum_EmptyValue(object p0)2291         public static string Mapping_Enum_EmptyValue(object p0) { throw null; }
Mapping_Enum_InvalidValue(object p0)2292         public static string Mapping_Enum_InvalidValue(object p0) { throw null; }
Mapping_Enum_OCMapping_MemberMismatch(object p0, object p1, object p2, object p3)2293         public static string Mapping_Enum_OCMapping_MemberMismatch(object p0, object p1, object p2, object p3) { throw null; }
Mapping_Enum_OCMapping_UnderlyingTypesMismatch(object p0, object p1, object p2, object p3)2294         public static string Mapping_Enum_OCMapping_UnderlyingTypesMismatch(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_CannotInferTargetFunctionKeys(object p0)2295         public static string Mapping_FunctionImport_CannotInferTargetFunctionKeys(object p0) { throw null; }
Mapping_FunctionImport_ConditionValueTypeMismatch(object p0, object p1, object p2)2296         public static string Mapping_FunctionImport_ConditionValueTypeMismatch(object p0, object p1, object p2) { throw null; }
Mapping_FunctionImport_EntityTypeMappingForFunctionNotReturningEntitySet(object p0, object p1)2297         public static string Mapping_FunctionImport_EntityTypeMappingForFunctionNotReturningEntitySet(object p0, object p1) { throw null; }
Mapping_FunctionImport_FunctionAmbiguous(object p0)2298         public static string Mapping_FunctionImport_FunctionAmbiguous(object p0) { throw null; }
Mapping_FunctionImport_FunctionImportDoesNotExist(object p0, object p1)2299         public static string Mapping_FunctionImport_FunctionImportDoesNotExist(object p0, object p1) { throw null; }
Mapping_FunctionImport_FunctionImportMappedMultipleTimes(object p0)2300         public static string Mapping_FunctionImport_FunctionImportMappedMultipleTimes(object p0) { throw null; }
Mapping_FunctionImport_ImplicitMappingForAbstractReturnType(object p0, object p1)2301         public static string Mapping_FunctionImport_ImplicitMappingForAbstractReturnType(object p0, object p1) { throw null; }
Mapping_FunctionImport_ImportParameterHasNoCorrespondingTargetParameter(object p0)2302         public static string Mapping_FunctionImport_ImportParameterHasNoCorrespondingTargetParameter(object p0) { throw null; }
Mapping_FunctionImport_IncompatibleEnumParameterType(object p0, object p1, object p2, object p3)2303         public static string Mapping_FunctionImport_IncompatibleEnumParameterType(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_IncompatibleParameterMode(object p0, object p1, object p2)2304         public static string Mapping_FunctionImport_IncompatibleParameterMode(object p0, object p1, object p2) { throw null; }
Mapping_FunctionImport_IncompatibleParameterType(object p0, object p1, object p2)2305         public static string Mapping_FunctionImport_IncompatibleParameterType(object p0, object p1, object p2) { throw null; }
Mapping_FunctionImport_InvalidContentEntityTypeForEntitySet(object p0, object p1, object p2, object p3)2306         public static string Mapping_FunctionImport_InvalidContentEntityTypeForEntitySet(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_PropertyNotMapped(object p0, object p1, object p2)2307         public static string Mapping_FunctionImport_PropertyNotMapped(object p0, object p1, object p2) { throw null; }
Mapping_FunctionImport_ResultMappingCountDoesNotMatchResultCount(object p0)2308         public static string Mapping_FunctionImport_ResultMappingCountDoesNotMatchResultCount(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_InvalidCTypeCTExpected(object p0)2309         public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeCTExpected(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_InvalidCTypeETExpected(object p0)2310         public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeETExpected(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_InvalidSType(object p0)2311         public static string Mapping_FunctionImport_ResultMapping_InvalidSType(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_MappedTypeDoesNotMatchReturnType(object p0, object p1)2312         public static string Mapping_FunctionImport_ResultMapping_MappedTypeDoesNotMatchReturnType(object p0, object p1) { throw null; }
Mapping_FunctionImport_RowsAffectedParameterDoesNotExist(object p0, object p1)2313         public static string Mapping_FunctionImport_RowsAffectedParameterDoesNotExist(object p0, object p1) { throw null; }
Mapping_FunctionImport_RowsAffectedParameterHasWrongMode(object p0, object p1, object p2, object p3)2314         public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongMode(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_RowsAffectedParameterHasWrongType(object p0, object p1)2315         public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongType(object p0, object p1) { throw null; }
Mapping_FunctionImport_ScalarMappingToMulticolumnTVF(object p0, object p1)2316         public static string Mapping_FunctionImport_ScalarMappingToMulticolumnTVF(object p0, object p1) { throw null; }
Mapping_FunctionImport_ScalarMappingTypeMismatch(object p0, object p1, object p2, object p3)2317         public static string Mapping_FunctionImport_ScalarMappingTypeMismatch(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_StoreFunctionDoesNotExist(object p0)2318         public static string Mapping_FunctionImport_StoreFunctionDoesNotExist(object p0) { throw null; }
Mapping_FunctionImport_TargetFunctionMustBeComposable(object p0, object p1)2319         public static string Mapping_FunctionImport_TargetFunctionMustBeComposable(object p0, object p1) { throw null; }
Mapping_FunctionImport_TargetFunctionMustBeNonComposable(object p0, object p1)2320         public static string Mapping_FunctionImport_TargetFunctionMustBeNonComposable(object p0, object p1) { throw null; }
Mapping_FunctionImport_TargetParameterHasNoCorrespondingImportParameter(object p0)2321         public static string Mapping_FunctionImport_TargetParameterHasNoCorrespondingImportParameter(object p0) { throw null; }
Mapping_FunctionImport_UnreachableIsTypeOf(object p0, object p1)2322         public static string Mapping_FunctionImport_UnreachableIsTypeOf(object p0, object p1) { throw null; }
Mapping_FunctionImport_UnreachableType(object p0, object p1)2323         public static string Mapping_FunctionImport_UnreachableType(object p0, object p1) { throw null; }
Mapping_FunctionImport_UnsupportedType(object p0, object p1)2324         public static string Mapping_FunctionImport_UnsupportedType(object p0, object p1) { throw null; }
Mapping_InvalidContent_AbstractEntity_FunctionMapping(object p0)2325         public static string Mapping_InvalidContent_AbstractEntity_FunctionMapping(object p0) { throw null; }
Mapping_InvalidContent_AbstractEntity_IsOfType(object p0)2326         public static string Mapping_InvalidContent_AbstractEntity_IsOfType(object p0) { throw null; }
Mapping_InvalidContent_AbstractEntity_Type(object p0)2327         public static string Mapping_InvalidContent_AbstractEntity_Type(object p0) { throw null; }
Mapping_InvalidContent_AssociationSet_Condition(object p0)2328         public static string Mapping_InvalidContent_AssociationSet_Condition(object p0) { throw null; }
Mapping_InvalidContent_Association_Set(object p0)2329         public static string Mapping_InvalidContent_Association_Set(object p0) { throw null; }
Mapping_InvalidContent_Association_Type(object p0)2330         public static string Mapping_InvalidContent_Association_Type(object p0) { throw null; }
Mapping_InvalidContent_Cdm_Member(object p0)2331         public static string Mapping_InvalidContent_Cdm_Member(object p0) { throw null; }
Mapping_InvalidContent_Column(object p0)2332         public static string Mapping_InvalidContent_Column(object p0) { throw null; }
Mapping_InvalidContent_Complex_Type(object p0)2333         public static string Mapping_InvalidContent_Complex_Type(object p0) { throw null; }
Mapping_InvalidContent_ConditionMapping_Computed(object p0)2334         public static string Mapping_InvalidContent_ConditionMapping_Computed(object p0) { throw null; }
Mapping_InvalidContent_ConditionMapping_InvalidMember(object p0)2335         public static string Mapping_InvalidContent_ConditionMapping_InvalidMember(object p0) { throw null; }
Mapping_InvalidContent_ConditionMapping_InvalidPrimitiveTypeKind(object p0, object p1)2336         public static string Mapping_InvalidContent_ConditionMapping_InvalidPrimitiveTypeKind(object p0, object p1) { throw null; }
Mapping_InvalidContent_Duplicate_Cdm_Member(object p0)2337         public static string Mapping_InvalidContent_Duplicate_Cdm_Member(object p0) { throw null; }
Mapping_InvalidContent_Duplicate_Condition_Member(object p0)2338         public static string Mapping_InvalidContent_Duplicate_Condition_Member(object p0) { throw null; }
Mapping_InvalidContent_Emtpty_SetMap(object p0)2339         public static string Mapping_InvalidContent_Emtpty_SetMap(object p0) { throw null; }
Mapping_InvalidContent_End(object p0)2340         public static string Mapping_InvalidContent_End(object p0) { throw null; }
Mapping_InvalidContent_EndProperty(object p0)2341         public static string Mapping_InvalidContent_EndProperty(object p0) { throw null; }
Mapping_InvalidContent_EntityContainer(object p0)2342         public static string Mapping_InvalidContent_EntityContainer(object p0) { throw null; }
Mapping_InvalidContent_Entity_Set(object p0)2343         public static string Mapping_InvalidContent_Entity_Set(object p0) { throw null; }
Mapping_InvalidContent_Entity_Type(object p0)2344         public static string Mapping_InvalidContent_Entity_Type(object p0) { throw null; }
Mapping_InvalidContent_Entity_Type_For_Entity_Set(object p0, object p1, object p2)2345         public static string Mapping_InvalidContent_Entity_Type_For_Entity_Set(object p0, object p1, object p2) { throw null; }
Mapping_InvalidContent_ForeignKey_Association_Set(object p0)2346         public static string Mapping_InvalidContent_ForeignKey_Association_Set(object p0) { throw null; }
Mapping_InvalidContent_ForeignKey_Association_Set_PKtoPK(object p0)2347         public static string Mapping_InvalidContent_ForeignKey_Association_Set_PKtoPK(object p0) { throw null; }
Mapping_InvalidContent_StorageEntityContainer(object p0)2348         public static string Mapping_InvalidContent_StorageEntityContainer(object p0) { throw null; }
Mapping_InvalidContent_Table(object p0)2349         public static string Mapping_InvalidContent_Table(object p0) { throw null; }
Mapping_InvalidMappingSchema_Parsing(object p0)2350         public static string Mapping_InvalidMappingSchema_Parsing(object p0) { throw null; }
Mapping_InvalidMappingSchema_validation(object p0)2351         public static string Mapping_InvalidMappingSchema_validation(object p0) { throw null; }
Mapping_Invalid_Association_Type_For_Association_Set(object p0, object p1, object p2)2352         public static string Mapping_Invalid_Association_Type_For_Association_Set(object p0, object p1, object p2) { throw null; }
Mapping_Invalid_CSide_ScalarProperty(object p0)2353         public static string Mapping_Invalid_CSide_ScalarProperty(object p0) { throw null; }
Mapping_Invalid_CSRootElementMissing(object p0, object p1, object p2)2354         public static string Mapping_Invalid_CSRootElementMissing(object p0, object p1, object p2) { throw null; }
Mapping_Invalid_Member_Mapping(object p0, object p1, object p2, object p3, object p4, object p5)2355         public static string Mapping_Invalid_Member_Mapping(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
Mapping_Invalid_QueryView(object p0, object p1)2356         public static string Mapping_Invalid_QueryView(object p0, object p1) { throw null; }
Mapping_Invalid_QueryView2(object p0, object p1)2357         public static string Mapping_Invalid_QueryView2(object p0, object p1) { throw null; }
Mapping_Invalid_QueryView_Type(object p0)2358         public static string Mapping_Invalid_QueryView_Type(object p0) { throw null; }
Mapping_Invalid_Query_Views_MissingSetClosure(object p0)2359         public static string Mapping_Invalid_Query_Views_MissingSetClosure(object p0) { throw null; }
Mapping_ItemWithSameNameExistsBothInCSpaceAndSSpace(object p0)2360         public static string Mapping_ItemWithSameNameExistsBothInCSpaceAndSSpace(object p0) { throw null; }
Mapping_ModificationFunction_AmbiguousFunction(object p0)2361         public static string Mapping_ModificationFunction_AmbiguousFunction(object p0) { throw null; }
Mapping_ModificationFunction_AmbiguousResultBinding(object p0, object p1)2362         public static string Mapping_ModificationFunction_AmbiguousResultBinding(object p0, object p1) { throw null; }
Mapping_ModificationFunction_AssociationEndMappingForeignKeyAssociation(object p0)2363         public static string Mapping_ModificationFunction_AssociationEndMappingForeignKeyAssociation(object p0) { throw null; }
Mapping_ModificationFunction_AssociationEndMappingInvalidForEntityType(object p0, object p1, object p2)2364         public static string Mapping_ModificationFunction_AssociationEndMappingInvalidForEntityType(object p0, object p1, object p2) { throw null; }
Mapping_ModificationFunction_AssociationSetAmbiguous(object p0)2365         public static string Mapping_ModificationFunction_AssociationSetAmbiguous(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetCardinality(object p0)2366         public static string Mapping_ModificationFunction_AssociationSetCardinality(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetDoesNotExist(object p0)2367         public static string Mapping_ModificationFunction_AssociationSetDoesNotExist(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetFromRoleIsNotEntitySet(object p0)2368         public static string Mapping_ModificationFunction_AssociationSetFromRoleIsNotEntitySet(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetNotMappedForOperation(object p0, object p1, object p2, object p3)2369         public static string Mapping_ModificationFunction_AssociationSetNotMappedForOperation(object p0, object p1, object p2, object p3) { throw null; }
Mapping_ModificationFunction_AssociationSetRoleDoesNotExist(object p0)2370         public static string Mapping_ModificationFunction_AssociationSetRoleDoesNotExist(object p0) { throw null; }
Mapping_ModificationFunction_ComplexTypeNotFound(object p0)2371         public static string Mapping_ModificationFunction_ComplexTypeNotFound(object p0) { throw null; }
Mapping_ModificationFunction_MissingEntityType(object p0)2372         public static string Mapping_ModificationFunction_MissingEntityType(object p0) { throw null; }
Mapping_ModificationFunction_MissingParameter(object p0, object p1)2373         public static string Mapping_ModificationFunction_MissingParameter(object p0, object p1) { throw null; }
Mapping_ModificationFunction_MissingSetClosure(object p0)2374         public static string Mapping_ModificationFunction_MissingSetClosure(object p0) { throw null; }
Mapping_ModificationFunction_MultipleEndsOfAssociationMapped(object p0, object p1, object p2)2375         public static string Mapping_ModificationFunction_MultipleEndsOfAssociationMapped(object p0, object p1, object p2) { throw null; }
Mapping_ModificationFunction_NotValidFunction(object p0)2376         public static string Mapping_ModificationFunction_NotValidFunction(object p0) { throw null; }
Mapping_ModificationFunction_NotValidFunctionParameter(object p0, object p1, object p2)2377         public static string Mapping_ModificationFunction_NotValidFunctionParameter(object p0, object p1, object p2) { throw null; }
Mapping_ModificationFunction_ParameterBoundTwice(object p0)2378         public static string Mapping_ModificationFunction_ParameterBoundTwice(object p0) { throw null; }
Mapping_ModificationFunction_ParameterNotFound(object p0, object p1)2379         public static string Mapping_ModificationFunction_ParameterNotFound(object p0, object p1) { throw null; }
Mapping_ModificationFunction_PropertyNotFound(object p0, object p1)2380         public static string Mapping_ModificationFunction_PropertyNotFound(object p0, object p1) { throw null; }
Mapping_ModificationFunction_PropertyNotKey(object p0, object p1)2381         public static string Mapping_ModificationFunction_PropertyNotKey(object p0, object p1) { throw null; }
Mapping_ModificationFunction_PropertyParameterTypeMismatch(object p0, object p1, object p2, object p3, object p4, object p5)2382         public static string Mapping_ModificationFunction_PropertyParameterTypeMismatch(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
Mapping_ModificationFunction_RedundantEntityTypeMapping(object p0)2383         public static string Mapping_ModificationFunction_RedundantEntityTypeMapping(object p0) { throw null; }
Mapping_ModificationFunction_UnknownFunction(object p0)2384         public static string Mapping_ModificationFunction_UnknownFunction(object p0) { throw null; }
Mapping_ModificationFunction_WrongComplexType(object p0, object p1)2385         public static string Mapping_ModificationFunction_WrongComplexType(object p0, object p1) { throw null; }
Mapping_NotFound_EntityContainer(object p0)2386         public static string Mapping_NotFound_EntityContainer(object p0) { throw null; }
Mapping_Object_InvalidType(object p0)2387         public static string Mapping_Object_InvalidType(object p0) { throw null; }
Mapping_ProviderReturnsNullType(object p0)2388         public static string Mapping_ProviderReturnsNullType(object p0) { throw null; }
Mapping_Provider_WrongConnectionType(object p0)2389         public static string Mapping_Provider_WrongConnectionType(object p0) { throw null; }
Mapping_Provider_WrongManifestType(object p0)2390         public static string Mapping_Provider_WrongManifestType(object p0) { throw null; }
Mapping_QueryViewMultipleTypeInTypeName(object p0)2391         public static string Mapping_QueryViewMultipleTypeInTypeName(object p0) { throw null; }
Mapping_QueryView_Duplicate_OfType(object p0, object p1)2392         public static string Mapping_QueryView_Duplicate_OfType(object p0, object p1) { throw null; }
Mapping_QueryView_Duplicate_OfTypeOnly(object p0, object p1)2393         public static string Mapping_QueryView_Duplicate_OfTypeOnly(object p0, object p1) { throw null; }
Mapping_QueryView_For_Base_Type(object p0, object p1)2394         public static string Mapping_QueryView_For_Base_Type(object p0, object p1) { throw null; }
Mapping_QueryView_PropertyMaps(object p0)2395         public static string Mapping_QueryView_PropertyMaps(object p0) { throw null; }
Mapping_QueryView_TypeName_Not_Defined(object p0)2396         public static string Mapping_QueryView_TypeName_Not_Defined(object p0) { throw null; }
Mapping_Storage_InvalidSpace(object p0)2397         public static string Mapping_Storage_InvalidSpace(object p0) { throw null; }
Mapping_StoreTypeMismatch_ScalarPropertyMapping(object p0, object p1)2398         public static string Mapping_StoreTypeMismatch_ScalarPropertyMapping(object p0, object p1) { throw null; }
Mapping_TableName_QueryView(object p0)2399         public static string Mapping_TableName_QueryView(object p0) { throw null; }
Mapping_UnsupportedExpressionKind_QueryView(object p0, object p1, object p2)2400         public static string Mapping_UnsupportedExpressionKind_QueryView(object p0, object p1, object p2) { throw null; }
Mapping_UnsupportedFunctionCall_QueryView(object p0, object p1)2401         public static string Mapping_UnsupportedFunctionCall_QueryView(object p0, object p1) { throw null; }
Mapping_UnsupportedInitialization_QueryView(object p0, object p1)2402         public static string Mapping_UnsupportedInitialization_QueryView(object p0, object p1) { throw null; }
Mapping_UnsupportedPropertyKind_QueryView(object p0, object p1, object p2)2403         public static string Mapping_UnsupportedPropertyKind_QueryView(object p0, object p1, object p2) { throw null; }
Mapping_UnsupportedScanTarget_QueryView(object p0, object p1)2404         public static string Mapping_UnsupportedScanTarget_QueryView(object p0, object p1) { throw null; }
Mapping_Views_For_Extent_Not_Generated(object p0, object p1)2405         public static string Mapping_Views_For_Extent_Not_Generated(object p0, object p1) { throw null; }
Materializer_AddedEntityAlreadyExists(object p0)2406         public static string Materializer_AddedEntityAlreadyExists(object p0) { throw null; }
Materializer_InvalidCastNullable(object p0, object p1)2407         public static string Materializer_InvalidCastNullable(object p0, object p1) { throw null; }
Materializer_InvalidCastReference(object p0, object p1)2408         public static string Materializer_InvalidCastReference(object p0, object p1) { throw null; }
Materializer_NullReferenceCast(object p0)2409         public static string Materializer_NullReferenceCast(object p0) { throw null; }
Materializer_PropertyIsNotNullableWithName(object p0)2410         public static string Materializer_PropertyIsNotNullableWithName(object p0) { throw null; }
Materializer_RecyclingEntity(object p0, object p1, object p2, object p3)2411         public static string Materializer_RecyclingEntity(object p0, object p1, object p2, object p3) { throw null; }
Materializer_SetInvalidValue(object p0, object p1, object p2, object p3)2412         public static string Materializer_SetInvalidValue(object p0, object p1, object p2, object p3) { throw null; }
MemberDoesNotBelongToEntityContainer(object p0, object p1)2413         public static string MemberDoesNotBelongToEntityContainer(object p0, object p1) { throw null; }
MemberInvalidIdentity(object p0)2414         public static string MemberInvalidIdentity(object p0) { throw null; }
MinAndMaxMustBePositive(object p0, object p1)2415         public static string MinAndMaxMustBePositive(object p0, object p1) { throw null; }
MinAndMaxValueMustBeDifferentForNonConstantFacet(object p0, object p1)2416         public static string MinAndMaxValueMustBeDifferentForNonConstantFacet(object p0, object p1) { throw null; }
MinAndMaxValueMustBeSameForConstantFacet(object p0, object p1)2417         public static string MinAndMaxValueMustBeSameForConstantFacet(object p0, object p1) { throw null; }
MinMustBeLessThanMax(object p0, object p1, object p2)2418         public static string MinMustBeLessThanMax(object p0, object p1, object p2) { throw null; }
MissingConstraintOnRelationshipType(object p0)2419         public static string MissingConstraintOnRelationshipType(object p0) { throw null; }
MissingDefaultValueForConstantFacet(object p0, object p1)2420         public static string MissingDefaultValueForConstantFacet(object p0, object p1) { throw null; }
MissingEntityContainerEnd(object p0, object p1)2421         public static string MissingEntityContainerEnd(object p0, object p1) { throw null; }
MissingFacetDescription(object p0, object p1, object p2)2422         public static string MissingFacetDescription(object p0, object p1, object p2) { throw null; }
MoreThanOneItemMatchesIdentity(object p0)2423         public static string MoreThanOneItemMatchesIdentity(object p0) { throw null; }
MultipleDefinitionsOfParameter(object p0)2424         public static string MultipleDefinitionsOfParameter(object p0) { throw null; }
MultipleDefinitionsOfVariable(object p0)2425         public static string MultipleDefinitionsOfVariable(object p0) { throw null; }
NamespaceAliasAlreadyUsed(object p0)2426         public static string NamespaceAliasAlreadyUsed(object p0) { throw null; }
NamespaceAlreadyImported(object p0)2427         public static string NamespaceAlreadyImported(object p0) { throw null; }
NavigationPropertyRelationshipEndTypeMismatch(object p0, object p1, object p2, object p3, object p4)2428         public static string NavigationPropertyRelationshipEndTypeMismatch(object p0, object p1, object p2, object p3, object p4) { throw null; }
NeedNotUseSystemNamespaceInUsing(object p0)2429         public static string NeedNotUseSystemNamespaceInUsing(object p0) { throw null; }
NestedAggregateCannotBeUsedInAggregate(object p0, object p1)2430         public static string NestedAggregateCannotBeUsedInAggregate(object p0, object p1) { throw null; }
NestedClassNotSupported(object p0, object p1)2431         public static string NestedClassNotSupported(object p0, object p1) { throw null; }
NewTypeConflictsWithExistingType(object p0, object p1)2432         public static string NewTypeConflictsWithExistingType(object p0, object p1) { throw null; }
NoAggrFunctionOverloadMatch(object p0, object p1, object p2)2433         public static string NoAggrFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoCanonicalAggrFunctionOverloadMatch(object p0, object p1, object p2)2434         public static string NoCanonicalAggrFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoCanonicalFunctionOverloadMatch(object p0, object p1, object p2)2435         public static string NoCanonicalFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoCodeGenNamespaceInStructuralAnnotation(object p0)2436         public static string NoCodeGenNamespaceInStructuralAnnotation(object p0) { throw null; }
NoCollectionForSpace(object p0)2437         public static string NoCollectionForSpace(object p0) { throw null; }
NoFunctionOverloadMatch(object p0, object p1, object p2)2438         public static string NoFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoStoreTypeForEdmType(object p0, object p1)2439         public static string NoStoreTypeForEdmType(object p0, object p1) { throw null; }
NotAMemberOfCollection(object p0, object p1)2440         public static string NotAMemberOfCollection(object p0, object p1) { throw null; }
NotAMemberOfType(object p0, object p1)2441         public static string NotAMemberOfType(object p0, object p1) { throw null; }
NotASuperOrSubType(object p0, object p1)2442         public static string NotASuperOrSubType(object p0, object p1) { throw null; }
NotInNamespaceAlias(object p0, object p1, object p2)2443         public static string NotInNamespaceAlias(object p0, object p1, object p2) { throw null; }
NotInNamespaceNoAlias(object p0, object p1)2444         public static string NotInNamespaceNoAlias(object p0, object p1) { throw null; }
NotNamespaceQualified(object p0)2445         public static string NotNamespaceQualified(object p0) { throw null; }
NullParameterForEdmRelationshipAttribute(object p0, object p1)2446         public static string NullParameterForEdmRelationshipAttribute(object p0, object p1) { throw null; }
NullRelationshipNameforEdmRelationshipAttribute(object p0)2447         public static string NullRelationshipNameforEdmRelationshipAttribute(object p0) { throw null; }
NumberOfTypeCtorIsLessThenFormalSpec(object p0)2448         public static string NumberOfTypeCtorIsLessThenFormalSpec(object p0) { throw null; }
NumberOfTypeCtorIsMoreThenFormalSpec(object p0)2449         public static string NumberOfTypeCtorIsMoreThenFormalSpec(object p0) { throw null; }
ObjectContext_AcceptAllChangesFailure(object p0)2450         public static string ObjectContext_AcceptAllChangesFailure(object p0) { throw null; }
ObjectContext_CannotExplicitlyLoadDetachedRelationships(object p0)2451         public static string ObjectContext_CannotExplicitlyLoadDetachedRelationships(object p0) { throw null; }
ObjectContext_CannotLoadReferencesUsingDifferentContext(object p0)2452         public static string ObjectContext_CannotLoadReferencesUsingDifferentContext(object p0) { throw null; }
ObjectContext_ClientEntityRemovedFromStore(object p0)2453         public static string ObjectContext_ClientEntityRemovedFromStore(object p0) { throw null; }
ObjectContext_EntitiesHaveDifferentType(object p0, object p1)2454         public static string ObjectContext_EntitiesHaveDifferentType(object p0, object p1) { throw null; }
ObjectContext_EntityContainerNotFoundForName(object p0)2455         public static string ObjectContext_EntityContainerNotFoundForName(object p0) { throw null; }
ObjectContext_EntityMustBeUnchangedOrModified(object p0)2456         public static string ObjectContext_EntityMustBeUnchangedOrModified(object p0) { throw null; }
ObjectContext_EntityMustBeUnchangedOrModifiedOrDeleted(object p0)2457         public static string ObjectContext_EntityMustBeUnchangedOrModifiedOrDeleted(object p0) { throw null; }
ObjectContext_EntityNotInObjectSet_Delete(object p0, object p1, object p2, object p3)2458         public static string ObjectContext_EntityNotInObjectSet_Delete(object p0, object p1, object p2, object p3) { throw null; }
ObjectContext_EntityNotInObjectSet_Detach(object p0, object p1, object p2, object p3)2459         public static string ObjectContext_EntityNotInObjectSet_Detach(object p0, object p1, object p2, object p3) { throw null; }
ObjectContext_EntitySetNotFoundForName(object p0)2460         public static string ObjectContext_EntitySetNotFoundForName(object p0) { throw null; }
ObjectContext_ExecuteFunctionCalledWithNonQueryFunction(object p0)2461         public static string ObjectContext_ExecuteFunctionCalledWithNonQueryFunction(object p0) { throw null; }
ObjectContext_ExecuteFunctionCalledWithNullParameter(object p0)2462         public static string ObjectContext_ExecuteFunctionCalledWithNullParameter(object p0) { throw null; }
ObjectContext_ExecuteFunctionCalledWithScalarFunction(object p0, object p1)2463         public static string ObjectContext_ExecuteFunctionCalledWithScalarFunction(object p0, object p1) { throw null; }
ObjectContext_ExecuteFunctionTypeMismatch(object p0, object p1)2464         public static string ObjectContext_ExecuteFunctionTypeMismatch(object p0, object p1) { throw null; }
ObjectContext_InvalidDefaultContainerName(object p0)2465         public static string ObjectContext_InvalidDefaultContainerName(object p0) { throw null; }
ObjectContext_InvalidEntitySetForStoreQuery(object p0, object p1, object p2)2466         public static string ObjectContext_InvalidEntitySetForStoreQuery(object p0, object p1, object p2) { throw null; }
ObjectContext_InvalidEntitySetInKey(object p0, object p1, object p2, object p3)2467         public static string ObjectContext_InvalidEntitySetInKey(object p0, object p1, object p2, object p3) { throw null; }
ObjectContext_InvalidEntitySetInKeyFromName(object p0, object p1, object p2, object p3, object p4)2468         public static string ObjectContext_InvalidEntitySetInKeyFromName(object p0, object p1, object p2, object p3, object p4) { throw null; }
ObjectContext_InvalidEntitySetOnEntity(object p0, object p1)2469         public static string ObjectContext_InvalidEntitySetOnEntity(object p0, object p1) { throw null; }
ObjectContext_InvalidObjectSetTypeForEntitySet(object p0, object p1, object p2)2470         public static string ObjectContext_InvalidObjectSetTypeForEntitySet(object p0, object p1, object p2) { throw null; }
ObjectContext_InvalidTypeForStoreQuery(object p0)2471         public static string ObjectContext_InvalidTypeForStoreQuery(object p0) { throw null; }
ObjectContext_MultipleEntitySetsFoundInAllContainers(object p0)2472         public static string ObjectContext_MultipleEntitySetsFoundInAllContainers(object p0) { throw null; }
ObjectContext_MultipleEntitySetsFoundInSingleContainer(object p0, object p1)2473         public static string ObjectContext_MultipleEntitySetsFoundInSingleContainer(object p0, object p1) { throw null; }
ObjectContext_NoEntitySetFoundForType(object p0)2474         public static string ObjectContext_NoEntitySetFoundForType(object p0) { throw null; }
ObjectContext_NoMappingForEntityType(object p0)2475         public static string ObjectContext_NoMappingForEntityType(object p0) { throw null; }
ObjectContext_NthElementInAddedState(object p0)2476         public static string ObjectContext_NthElementInAddedState(object p0) { throw null; }
ObjectContext_NthElementIsDuplicate(object p0)2477         public static string ObjectContext_NthElementIsDuplicate(object p0) { throw null; }
ObjectContext_NthElementIsNull(object p0)2478         public static string ObjectContext_NthElementIsNull(object p0) { throw null; }
ObjectContext_NthElementNotInObjectStateManager(object p0)2479         public static string ObjectContext_NthElementNotInObjectStateManager(object p0) { throw null; }
ObjectContext_TwoPropertiesMappedToSameColumn(object p0, object p1)2480         public static string ObjectContext_TwoPropertiesMappedToSameColumn(object p0, object p1) { throw null; }
ObjectParameterCollection_DuplicateParameterName(object p0)2481         public static string ObjectParameterCollection_DuplicateParameterName(object p0) { throw null; }
ObjectParameterCollection_ParameterAlreadyExists(object p0)2482         public static string ObjectParameterCollection_ParameterAlreadyExists(object p0) { throw null; }
ObjectParameterCollection_ParameterNameNotFound(object p0)2483         public static string ObjectParameterCollection_ParameterNameNotFound(object p0) { throw null; }
ObjectParameter_InvalidParameterName(object p0)2484         public static string ObjectParameter_InvalidParameterName(object p0) { throw null; }
ObjectParameter_InvalidParameterType(object p0)2485         public static string ObjectParameter_InvalidParameterType(object p0) { throw null; }
ObjectQuery_InvalidQueryName(object p0)2486         public static string ObjectQuery_InvalidQueryName(object p0) { throw null; }
ObjectQuery_QueryBuilder_InvalidResultType(object p0)2487         public static string ObjectQuery_QueryBuilder_InvalidResultType(object p0) { throw null; }
ObjectQuery_Span_NoNavProp(object p0, object p1)2488         public static string ObjectQuery_Span_NoNavProp(object p0, object p1) { throw null; }
ObjectQuery_UnableToMaterializeArbitaryProjectionType(object p0)2489         public static string ObjectQuery_UnableToMaterializeArbitaryProjectionType(object p0) { throw null; }
ObjectQuery_UnableToMaterializeArray(object p0, object p1)2490         public static string ObjectQuery_UnableToMaterializeArray(object p0, object p1) { throw null; }
ObjectStateEntry_CannotModifyKeyProperty(object p0)2491         public static string ObjectStateEntry_CannotModifyKeyProperty(object p0) { throw null; }
ObjectStateEntry_ChangedInDifferentStateFromChanging(object p0, object p1)2492         public static string ObjectStateEntry_ChangedInDifferentStateFromChanging(object p0, object p1) { throw null; }
ObjectStateEntry_ChangeOnUnmappedComplexProperty(object p0)2493         public static string ObjectStateEntry_ChangeOnUnmappedComplexProperty(object p0) { throw null; }
ObjectStateEntry_ChangeOnUnmappedProperty(object p0)2494         public static string ObjectStateEntry_ChangeOnUnmappedProperty(object p0) { throw null; }
ObjectStateEntry_ComplexObjectUsedMultipleTimes(object p0, object p1)2495         public static string ObjectStateEntry_ComplexObjectUsedMultipleTimes(object p0, object p1) { throw null; }
ObjectStateEntry_NullOriginalValueForNonNullableProperty(object p0, object p1, object p2)2496         public static string ObjectStateEntry_NullOriginalValueForNonNullableProperty(object p0, object p1, object p2) { throw null; }
ObjectStateEntry_SetModifiedOnInvalidProperty(object p0)2497         public static string ObjectStateEntry_SetModifiedOnInvalidProperty(object p0) { throw null; }
ObjectStateEntry_SetModifiedStates(object p0)2498         public static string ObjectStateEntry_SetModifiedStates(object p0) { throw null; }
ObjectStateEntry_SetOriginalComplexProperties(object p0)2499         public static string ObjectStateEntry_SetOriginalComplexProperties(object p0) { throw null; }
ObjectStateEntry_SetOriginalPrimaryKey(object p0)2500         public static string ObjectStateEntry_SetOriginalPrimaryKey(object p0) { throw null; }
ObjectStateEntry_UnableToEnumerateCollection(object p0, object p1)2501         public static string ObjectStateEntry_UnableToEnumerateCollection(object p0, object p1) { throw null; }
ObjectStateManager_ConflictingChangesOfRelationshipDetected(object p0, object p1)2502         public static string ObjectStateManager_ConflictingChangesOfRelationshipDetected(object p0, object p1) { throw null; }
ObjectStateManager_DoesnotAllowToReAddUnchangedOrModifiedOrDeletedEntity(object p0)2503         public static string ObjectStateManager_DoesnotAllowToReAddUnchangedOrModifiedOrDeletedEntity(object p0) { throw null; }
ObjectStateManager_EntityTypeDoesnotMatchtoEntitySetType(object p0, object p1)2504         public static string ObjectStateManager_EntityTypeDoesnotMatchtoEntitySetType(object p0, object p1) { throw null; }
ObjectStateManager_GetEntityKeyRequiresObjectToHaveAKey(object p0)2505         public static string ObjectStateManager_GetEntityKeyRequiresObjectToHaveAKey(object p0) { throw null; }
ObjectStateManager_NoEntryExistsForObject(object p0)2506         public static string ObjectStateManager_NoEntryExistsForObject(object p0) { throw null; }
ObjectView_CannotResolveTheEntitySet(object p0)2507         public static string ObjectView_CannotResolveTheEntitySet(object p0) { throw null; }
OfTypeExpressionElementTypeMustBeEntityType(object p0, object p1)2508         public static string OfTypeExpressionElementTypeMustBeEntityType(object p0, object p1) { throw null; }
OfTypeExpressionElementTypeMustBeNominalType(object p0, object p1)2509         public static string OfTypeExpressionElementTypeMustBeNominalType(object p0, object p1) { throw null; }
OfTypeOnlyTypeArgumentCannotBeAbstract(object p0)2510         public static string OfTypeOnlyTypeArgumentCannotBeAbstract(object p0) { throw null; }
ParameterNameAlreadyDefinedDuplicate(object p0)2511         public static string ParameterNameAlreadyDefinedDuplicate(object p0) { throw null; }
ParameterTypeNotSupported(object p0, object p1)2512         public static string ParameterTypeNotSupported(object p0, object p1) { throw null; }
ParameterWasNotDefined(object p0)2513         public static string ParameterWasNotDefined(object p0) { throw null; }
PlaceholderExpressionMustBeCompatibleWithEdm64(object p0, object p1)2514         public static string PlaceholderExpressionMustBeCompatibleWithEdm64(object p0, object p1) { throw null; }
PlaceholderExpressionMustBeConstant(object p0)2515         public static string PlaceholderExpressionMustBeConstant(object p0) { throw null; }
PlaceholderExpressionMustBeGreaterThanOrEqualToZero(object p0)2516         public static string PlaceholderExpressionMustBeGreaterThanOrEqualToZero(object p0) { throw null; }
PlaceholderSetArgTypeIsNotEqualComparable(object p0, object p1, object p2)2517         public static string PlaceholderSetArgTypeIsNotEqualComparable(object p0, object p1, object p2) { throw null; }
PocoEntityWrapper_UnableToMaterializeArbitaryNavPropType(object p0, object p1)2518         public static string PocoEntityWrapper_UnableToMaterializeArbitaryNavPropType(object p0, object p1) { throw null; }
PocoEntityWrapper_UnableToSetFieldOrProperty(object p0, object p1)2519         public static string PocoEntityWrapper_UnableToSetFieldOrProperty(object p0, object p1) { throw null; }
PocoEntityWrapper_UnexpectedTypeForNavigationProperty(object p0, object p1)2520         public static string PocoEntityWrapper_UnexpectedTypeForNavigationProperty(object p0, object p1) { throw null; }
PrecisionMustBeGreaterThanScale(object p0, object p1)2521         public static string PrecisionMustBeGreaterThanScale(object p0, object p1) { throw null; }
PrecisionOutOfRange(object p0, object p1, object p2, object p3)2522         public static string PrecisionOutOfRange(object p0, object p1, object p2, object p3) { throw null; }
PropertyNameAlreadyDefinedDuplicate(object p0)2523         public static string PropertyNameAlreadyDefinedDuplicate(object p0) { throw null; }
PropertyTypeAlreadyDefined(object p0)2524         public static string PropertyTypeAlreadyDefined(object p0) { throw null; }
ProviderDoesNotSupportType(object p0)2525         public static string ProviderDoesNotSupportType(object p0) { throw null; }
ProviderReturnedNullForGetDbInformation(object p0)2526         public static string ProviderReturnedNullForGetDbInformation(object p0) { throw null; }
RefArgIsNotOfEntityType(object p0)2527         public static string RefArgIsNotOfEntityType(object p0) { throw null; }
ReferenceToNonEntityType(object p0)2528         public static string ReferenceToNonEntityType(object p0) { throw null; }
RefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1)2529         public static string RefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1) { throw null; }
RelatedEndExprTypeMustBePromotoableToToEnd(object p0, object p1)2530         public static string RelatedEndExprTypeMustBePromotoableToToEnd(object p0, object p1) { throw null; }
RelatedEnd_CannotAddToFixedSizeArray(object p0)2531         public static string RelatedEnd_CannotAddToFixedSizeArray(object p0) { throw null; }
RelatedEnd_CannotCreateRelationshipBetweenTrackedAndNoTrackedEntities(object p0)2532         public static string RelatedEnd_CannotCreateRelationshipBetweenTrackedAndNoTrackedEntities(object p0) { throw null; }
RelatedEnd_CannotRemoveFromFixedSizeArray(object p0)2533         public static string RelatedEnd_CannotRemoveFromFixedSizeArray(object p0) { throw null; }
RelatedEnd_CannotSerialize(object p0)2534         public static string RelatedEnd_CannotSerialize(object p0) { throw null; }
RelatedEnd_EntitySetIsNotValidForRelationship(object p0, object p1, object p2, object p3, object p4)2535         public static string RelatedEnd_EntitySetIsNotValidForRelationship(object p0, object p1, object p2, object p3, object p4) { throw null; }
RelatedEnd_InvalidContainedType_Collection(object p0, object p1)2536         public static string RelatedEnd_InvalidContainedType_Collection(object p0, object p1) { throw null; }
RelatedEnd_InvalidContainedType_Reference(object p0, object p1)2537         public static string RelatedEnd_InvalidContainedType_Reference(object p0, object p1) { throw null; }
RelatedEnd_InvalidNthElementContextForAttach(object p0)2538         public static string RelatedEnd_InvalidNthElementContextForAttach(object p0) { throw null; }
RelatedEnd_InvalidNthElementNullForAttach(object p0)2539         public static string RelatedEnd_InvalidNthElementNullForAttach(object p0) { throw null; }
RelatedEnd_InvalidNthElementStateForAttach(object p0)2540         public static string RelatedEnd_InvalidNthElementStateForAttach(object p0) { throw null; }
RelatedEnd_InvalidRelationshipFixupDetected(object p0, object p1)2541         public static string RelatedEnd_InvalidRelationshipFixupDetected(object p0, object p1) { throw null; }
RelatedEnd_MismatchedMergeOptionOnLoad(object p0)2542         public static string RelatedEnd_MismatchedMergeOptionOnLoad(object p0) { throw null; }
RelatedEnd_RelatedEndNotAttachedToContext(object p0)2543         public static string RelatedEnd_RelatedEndNotAttachedToContext(object p0) { throw null; }
RelationshipManager_CollectionAlreadyInitialized(object p0)2544         public static string RelationshipManager_CollectionAlreadyInitialized(object p0) { throw null; }
RelationshipManager_CollectionRelationshipManagerAttached(object p0)2545         public static string RelationshipManager_CollectionRelationshipManagerAttached(object p0) { throw null; }
RelationshipManager_InvalidTargetRole(object p0, object p1)2546         public static string RelationshipManager_InvalidTargetRole(object p0, object p1) { throw null; }
RelationshipManager_NavigationPropertyNotFound(object p0)2547         public static string RelationshipManager_NavigationPropertyNotFound(object p0) { throw null; }
RelationshipManager_OwnerIsNotSourceType(object p0, object p1, object p2, object p3)2548         public static string RelationshipManager_OwnerIsNotSourceType(object p0, object p1, object p2, object p3) { throw null; }
RelationshipManager_ReferenceAlreadyInitialized(object p0)2549         public static string RelationshipManager_ReferenceAlreadyInitialized(object p0) { throw null; }
RelationshipManager_RelationshipManagerAttached(object p0)2550         public static string RelationshipManager_RelationshipManagerAttached(object p0) { throw null; }
RelationshipManager_UnableToFindRelationshipTypeInMetadata(object p0)2551         public static string RelationshipManager_UnableToFindRelationshipTypeInMetadata(object p0) { throw null; }
RelationshipNameInNavigationPropertyNotValid(object p0, object p1, object p2)2552         public static string RelationshipNameInNavigationPropertyNotValid(object p0, object p1, object p2) { throw null; }
RelationshipTargetMustBeUnique(object p0)2553         public static string RelationshipTargetMustBeUnique(object p0) { throw null; }
RelationshipTypeExpected(object p0)2554         public static string RelationshipTypeExpected(object p0) { throw null; }
RequiredFacetMissing(object p0, object p1)2555         public static string RequiredFacetMissing(object p0, object p1) { throw null; }
RoleTypeInEdmRelationshipAttributeIsInvalidType(object p0, object p1, object p2)2556         public static string RoleTypeInEdmRelationshipAttributeIsInvalidType(object p0, object p1, object p2) { throw null; }
SameRoleNameOnRelationshipAttribute(object p0, object p1)2557         public static string SameRoleNameOnRelationshipAttribute(object p0, object p1) { throw null; }
SameRoleReferredInReferentialConstraint(object p0)2558         public static string SameRoleReferredInReferentialConstraint(object p0) { throw null; }
ScaleOutOfRange(object p0, object p1, object p2, object p3)2559         public static string ScaleOutOfRange(object p0, object p1, object p2, object p3) { throw null; }
SimilarRelationshipEnd(object p0, object p1, object p2, object p3, object p4)2560         public static string SimilarRelationshipEnd(object p0, object p1, object p2, object p3, object p4) { throw null; }
SourceTypeMustBePromotoableToFromEndRelationType(object p0, object p1)2561         public static string SourceTypeMustBePromotoableToFromEndRelationType(object p0, object p1) { throw null; }
SqlGen_CanonicalFunctionNotSupportedPriorSql10(object p0)2562         public static string SqlGen_CanonicalFunctionNotSupportedPriorSql10(object p0) { throw null; }
SqlGen_InvalidDatePartArgumentExpression(object p0, object p1)2563         public static string SqlGen_InvalidDatePartArgumentExpression(object p0, object p1) { throw null; }
SqlGen_InvalidDatePartArgumentValue(object p0, object p1, object p2)2564         public static string SqlGen_InvalidDatePartArgumentValue(object p0, object p1, object p2) { throw null; }
SqlGen_PrimitiveTypeNotSupportedPriorSql10(object p0)2565         public static string SqlGen_PrimitiveTypeNotSupportedPriorSql10(object p0) { throw null; }
SqlGen_TypedNaNNotSupported(object p0)2566         public static string SqlGen_TypedNaNNotSupported(object p0) { throw null; }
SqlGen_TypedNegativeInfinityNotSupported(object p0, object p1)2567         public static string SqlGen_TypedNegativeInfinityNotSupported(object p0, object p1) { throw null; }
SqlGen_TypedPositiveInfinityNotSupported(object p0, object p1)2568         public static string SqlGen_TypedPositiveInfinityNotSupported(object p0, object p1) { throw null; }
SqlProvider_InvalidGeographyColumn(object p0)2569         public static string SqlProvider_InvalidGeographyColumn(object p0) { throw null; }
SqlProvider_InvalidGeometryColumn(object p0)2570         public static string SqlProvider_InvalidGeometryColumn(object p0) { throw null; }
SqlProvider_NeedSqlDataReader(object p0)2571         public static string SqlProvider_NeedSqlDataReader(object p0) { throw null; }
SqlSpatialServices_ProviderValueNotSqlType(object p0)2572         public static string SqlSpatialServices_ProviderValueNotSqlType(object p0) { throw null; }
StorageEntityContainerNameMismatchWhileSpecifyingPartialMapping(object p0, object p1, object p2)2573         public static string StorageEntityContainerNameMismatchWhileSpecifyingPartialMapping(object p0, object p1, object p2) { throw null; }
StoreItemCollectionMustHaveOneArtifact(object p0)2574         public static string StoreItemCollectionMustHaveOneArtifact(object p0) { throw null; }
SystemNamespaceEncountered(object p0)2575         public static string SystemNamespaceEncountered(object p0) { throw null; }
TableAndSchemaAreMutuallyExclusiveWithDefiningQuery(object p0)2576         public static string TableAndSchemaAreMutuallyExclusiveWithDefiningQuery(object p0) { throw null; }
TargetRoleNameInNavigationPropertyNotValid(object p0, object p1, object p2, object p3)2577         public static string TargetRoleNameInNavigationPropertyNotValid(object p0, object p1, object p2, object p3) { throw null; }
TextNotAllowed(object p0)2578         public static string TextNotAllowed(object p0) { throw null; }
TooManyAssociationEnds(object p0)2579         public static string TooManyAssociationEnds(object p0) { throw null; }
TypeArgumentBelowMin(object p0)2580         public static string TypeArgumentBelowMin(object p0) { throw null; }
TypeArgumentCountMismatch(object p0, object p1)2581         public static string TypeArgumentCountMismatch(object p0, object p1) { throw null; }
TypeArgumentExceedsMax(object p0)2582         public static string TypeArgumentExceedsMax(object p0) { throw null; }
TypeDoesNotSupportFacet(object p0, object p1)2583         public static string TypeDoesNotSupportFacet(object p0, object p1) { throw null; }
TypeDoesNotSupportSpec(object p0)2584         public static string TypeDoesNotSupportSpec(object p0) { throw null; }
TypeKindMismatch(object p0, object p1, object p2, object p3)2585         public static string TypeKindMismatch(object p0, object p1, object p2, object p3) { throw null; }
TypeMismatchRelationshipConstaint(object p0, object p1, object p2, object p3, object p4)2586         public static string TypeMismatchRelationshipConstaint(object p0, object p1, object p2, object p3, object p4) { throw null; }
TypeMustBeEntityType(object p0, object p1, object p2)2587         public static string TypeMustBeEntityType(object p0, object p1, object p2) { throw null; }
TypeMustBeNominalType(object p0, object p1, object p2)2588         public static string TypeMustBeNominalType(object p0, object p1, object p2) { throw null; }
TypeNameAlreadyDefinedDuplicate(object p0)2589         public static string TypeNameAlreadyDefinedDuplicate(object p0) { throw null; }
TypeNameNotFound(object p0)2590         public static string TypeNameNotFound(object p0) { throw null; }
TypeNotInAssociationSet(object p0, object p1, object p2)2591         public static string TypeNotInAssociationSet(object p0, object p1, object p2) { throw null; }
TypeNotInEntitySet(object p0, object p1, object p2)2592         public static string TypeNotInEntitySet(object p0, object p1, object p2) { throw null; }
UnableToFindReflectedType(object p0, object p1)2593         public static string UnableToFindReflectedType(object p0, object p1) { throw null; }
UnableToResolveAssembly(object p0)2594         public static string UnableToResolveAssembly(object p0) { throw null; }
UnacceptableUri(object p0)2595         public static string UnacceptableUri(object p0) { throw null; }
UnexpectedRootElement(object p0, object p1, object p2)2596         public static string UnexpectedRootElement(object p0, object p1, object p2) { throw null; }
UnexpectedRootElementNoNamespace(object p0, object p1, object p2)2597         public static string UnexpectedRootElementNoNamespace(object p0, object p1, object p2) { throw null; }
UnexpectedTypeInCollection(object p0, object p1)2598         public static string UnexpectedTypeInCollection(object p0, object p1) { throw null; }
UnexpectedXmlAttribute(object p0)2599         public static string UnexpectedXmlAttribute(object p0) { throw null; }
UnexpectedXmlElement(object p0)2600         public static string UnexpectedXmlElement(object p0) { throw null; }
UnexpectedXmlNodeType(object p0)2601         public static string UnexpectedXmlNodeType(object p0) { throw null; }
UnknownExpressionResolutionClass(object p0)2602         public static string UnknownExpressionResolutionClass(object p0) { throw null; }
Update_AmbiguousForeignKey(object p0)2603         public static string Update_AmbiguousForeignKey(object p0) { throw null; }
Update_ConcurrencyError(object p0)2604         public static string Update_ConcurrencyError(object p0) { throw null; }
Update_GeneratedDependent(object p0)2605         public static string Update_GeneratedDependent(object p0) { throw null; }
Update_InsertingOrUpdatingReferenceToDeletedEntity(object p0)2606         public static string Update_InsertingOrUpdatingReferenceToDeletedEntity(object p0) { throw null; }
Update_MappingNotFound(object p0)2607         public static string Update_MappingNotFound(object p0) { throw null; }
Update_MissingEntity(object p0, object p1)2608         public static string Update_MissingEntity(object p0, object p1) { throw null; }
Update_MissingFunctionMapping(object p0, object p1, object p2)2609         public static string Update_MissingFunctionMapping(object p0, object p1, object p2) { throw null; }
Update_MissingRequiredEntity(object p0, object p1, object p2)2610         public static string Update_MissingRequiredEntity(object p0, object p1, object p2) { throw null; }
Update_MissingRequiredRelationshipValue(object p0, object p1)2611         public static string Update_MissingRequiredRelationshipValue(object p0, object p1) { throw null; }
Update_MissingResultColumn(object p0)2612         public static string Update_MissingResultColumn(object p0) { throw null; }
Update_ModifyingIdentityColumn(object p0, object p1, object p2)2613         public static string Update_ModifyingIdentityColumn(object p0, object p1, object p2) { throw null; }
Update_NotSupportedComputedKeyColumn(object p0, object p1, object p2, object p3, object p4)2614         public static string Update_NotSupportedComputedKeyColumn(object p0, object p1, object p2, object p3, object p4) { throw null; }
Update_NotSupportedIdentityType(object p0, object p1)2615         public static string Update_NotSupportedIdentityType(object p0, object p1) { throw null; }
Update_NotSupportedServerGenKey(object p0)2616         public static string Update_NotSupportedServerGenKey(object p0) { throw null; }
Update_NullReturnValueForNonNullableMember(object p0, object p1)2617         public static string Update_NullReturnValueForNonNullableMember(object p0, object p1) { throw null; }
Update_NullValue(object p0)2618         public static string Update_NullValue(object p0) { throw null; }
Update_RelationshipCardinalityConstraintViolation(object p0, object p1, object p2, object p3, object p4, object p5)2619         public static string Update_RelationshipCardinalityConstraintViolation(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
Update_RelationshipCardinalityConstraintViolationSingleValue(object p0, object p1, object p2, object p3, object p4)2620         public static string Update_RelationshipCardinalityConstraintViolationSingleValue(object p0, object p1, object p2, object p3, object p4) { throw null; }
Update_RelationshipCardinalityViolation(object p0, object p1, object p2, object p3, object p4, object p5)2621         public static string Update_RelationshipCardinalityViolation(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
Update_ReturnValueHasUnexpectedType(object p0, object p1, object p2, object p3)2622         public static string Update_ReturnValueHasUnexpectedType(object p0, object p1, object p2, object p3) { throw null; }
Update_SqlEntitySetWithoutDmlFunctions(object p0, object p1, object p2)2623         public static string Update_SqlEntitySetWithoutDmlFunctions(object p0, object p1, object p2) { throw null; }
Update_UnableToConvertRowsAffectedParameterToInt32(object p0, object p1)2624         public static string Update_UnableToConvertRowsAffectedParameterToInt32(object p0, object p1) { throw null; }
Update_UnsupportedCastArgument(object p0)2625         public static string Update_UnsupportedCastArgument(object p0) { throw null; }
Update_UnsupportedExpressionKind(object p0, object p1)2626         public static string Update_UnsupportedExpressionKind(object p0, object p1) { throw null; }
Update_UnsupportedExtentType(object p0, object p1)2627         public static string Update_UnsupportedExtentType(object p0, object p1) { throw null; }
Update_UnsupportedJoinType(object p0)2628         public static string Update_UnsupportedJoinType(object p0) { throw null; }
Update_UnsupportedProjection(object p0)2629         public static string Update_UnsupportedProjection(object p0) { throw null; }
Validator_NoKeyMembers(object p0)2630         public static string Validator_NoKeyMembers(object p0) { throw null; }
Validator_NullableEntityKeyProperty(object p0, object p1)2631         public static string Validator_NullableEntityKeyProperty(object p0, object p1) { throw null; }
Validator_OSpace_ComplexPropertyNotComplex(object p0, object p1, object p2)2632         public static string Validator_OSpace_ComplexPropertyNotComplex(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_AmbiguousClrType(object p0, object p1, object p2)2633         public static string Validator_OSpace_Convention_AmbiguousClrType(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_AttributeAssemblyReferenced(object p0)2634         public static string Validator_OSpace_Convention_AttributeAssemblyReferenced(object p0) { throw null; }
Validator_OSpace_Convention_BaseTypeIncompatible(object p0, object p1, object p2)2635         public static string Validator_OSpace_Convention_BaseTypeIncompatible(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_BaseTypeNotLoaded(object p0, object p1)2636         public static string Validator_OSpace_Convention_BaseTypeNotLoaded(object p0, object p1) { throw null; }
Validator_OSpace_Convention_MissingOSpaceType(object p0)2637         public static string Validator_OSpace_Convention_MissingOSpaceType(object p0) { throw null; }
Validator_OSpace_Convention_MissingRequiredProperty(object p0, object p1)2638         public static string Validator_OSpace_Convention_MissingRequiredProperty(object p0, object p1) { throw null; }
Validator_OSpace_Convention_MultipleTypesWithSameName(object p0)2639         public static string Validator_OSpace_Convention_MultipleTypesWithSameName(object p0) { throw null; }
Validator_OSpace_Convention_NonPrimitiveTypeProperty(object p0, object p1, object p2)2640         public static string Validator_OSpace_Convention_NonPrimitiveTypeProperty(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_RelationshipNotLoaded(object p0, object p1)2641         public static string Validator_OSpace_Convention_RelationshipNotLoaded(object p0, object p1) { throw null; }
Validator_OSpace_Convention_ScalarPropertyMissginGetterOrSetter(object p0, object p1, object p2)2642         public static string Validator_OSpace_Convention_ScalarPropertyMissginGetterOrSetter(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_SSpaceOSpaceTypeMismatch(object p0, object p1)2643         public static string Validator_OSpace_Convention_SSpaceOSpaceTypeMismatch(object p0, object p1) { throw null; }
Validator_OSpace_Convention_Struct(object p0, object p1)2644         public static string Validator_OSpace_Convention_Struct(object p0, object p1) { throw null; }
Validator_OSpace_InvalidNavPropReturnType(object p0, object p1, object p2)2645         public static string Validator_OSpace_InvalidNavPropReturnType(object p0, object p1, object p2) { throw null; }
Validator_OSpace_ScalarPropertyNotPrimitive(object p0, object p1, object p2)2646         public static string Validator_OSpace_ScalarPropertyNotPrimitive(object p0, object p1, object p2) { throw null; }
Validator_UnsupportedEnumUnderlyingType(object p0)2647         public static string Validator_UnsupportedEnumUnderlyingType(object p0) { throw null; }
ValueNotUnderstood(object p0, object p1)2648         public static string ValueNotUnderstood(object p0, object p1) { throw null; }
ViewGen_AssociationEndShouldBeMappedToKey(object p0, object p1)2649         public static string ViewGen_AssociationEndShouldBeMappedToKey(object p0, object p1) { throw null; }
ViewGen_AssociationSetKey_Missing(object p0, object p1, object p2)2650         public static string ViewGen_AssociationSetKey_Missing(object p0, object p1, object p2) { throw null; }
ViewGen_AssociationSet_AsUserString(object p0, object p1, object p2)2651         public static string ViewGen_AssociationSet_AsUserString(object p0, object p1, object p2) { throw null; }
ViewGen_AssociationSet_AsUserString_Negated(object p0, object p1, object p2)2652         public static string ViewGen_AssociationSet_AsUserString_Negated(object p0, object p1, object p2) { throw null; }
Viewgen_CannotGenerateQueryViewUnderNoValidation(object p0)2653         public static string Viewgen_CannotGenerateQueryViewUnderNoValidation(object p0) { throw null; }
ViewGen_Cannot_Disambiguate_MultiConstant(object p0, object p1)2654         public static string ViewGen_Cannot_Disambiguate_MultiConstant(object p0, object p1) { throw null; }
ViewGen_Cannot_Recover_Attributes(object p0, object p1, object p2)2655         public static string ViewGen_Cannot_Recover_Attributes(object p0, object p1, object p2) { throw null; }
ViewGen_Cannot_Recover_Types(object p0, object p1)2656         public static string ViewGen_Cannot_Recover_Types(object p0, object p1) { throw null; }
ViewGen_Concurrency_Derived_Class(object p0, object p1, object p2)2657         public static string ViewGen_Concurrency_Derived_Class(object p0, object p1, object p2) { throw null; }
ViewGen_Concurrency_Invalid_Condition(object p0, object p1)2658         public static string ViewGen_Concurrency_Invalid_Condition(object p0, object p1) { throw null; }
Viewgen_ConfigurationErrorMsg(object p0)2659         public static string Viewgen_ConfigurationErrorMsg(object p0) { throw null; }
ViewGen_CQ_DomainConstraint(object p0)2660         public static string ViewGen_CQ_DomainConstraint(object p0) { throw null; }
ViewGen_CQ_PartitionConstraint(object p0)2661         public static string ViewGen_CQ_PartitionConstraint(object p0) { throw null; }
ViewGen_Duplicate_CProperties(object p0)2662         public static string ViewGen_Duplicate_CProperties(object p0) { throw null; }
ViewGen_Duplicate_CProperties_IsMapped(object p0, object p1)2663         public static string ViewGen_Duplicate_CProperties_IsMapped(object p0, object p1) { throw null; }
ViewGen_EntitySetKey_Missing(object p0, object p1)2664         public static string ViewGen_EntitySetKey_Missing(object p0, object p1) { throw null; }
ViewGen_EntitySet_AsUserString(object p0, object p1)2665         public static string ViewGen_EntitySet_AsUserString(object p0, object p1) { throw null; }
ViewGen_EntitySet_AsUserString_Negated(object p0, object p1)2666         public static string ViewGen_EntitySet_AsUserString_Negated(object p0, object p1) { throw null; }
ViewGen_ErrorLog(object p0)2667         public static string ViewGen_ErrorLog(object p0) { throw null; }
ViewGen_ErrorLog2(object p0)2668         public static string ViewGen_ErrorLog2(object p0) { throw null; }
Viewgen_ErrorPattern_ConditionMemberIsMapped(object p0)2669         public static string Viewgen_ErrorPattern_ConditionMemberIsMapped(object p0) { throw null; }
Viewgen_ErrorPattern_DuplicateConditionValue(object p0)2670         public static string Viewgen_ErrorPattern_DuplicateConditionValue(object p0) { throw null; }
Viewgen_ErrorPattern_NotNullConditionMappedToNullableMember(object p0, object p1)2671         public static string Viewgen_ErrorPattern_NotNullConditionMappedToNullableMember(object p0, object p1) { throw null; }
Viewgen_ErrorPattern_Partition_MultipleTypesMappedToSameTable_WithoutCondition(object p0, object p1)2672         public static string Viewgen_ErrorPattern_Partition_MultipleTypesMappedToSameTable_WithoutCondition(object p0, object p1) { throw null; }
Viewgen_ErrorPattern_TableMappedToMultipleES(object p0, object p1, object p2)2673         public static string Viewgen_ErrorPattern_TableMappedToMultipleES(object p0, object p1, object p2) { throw null; }
ViewGen_Foreign_Key(object p0, object p1, object p2, object p3, object p4)2674         public static string ViewGen_Foreign_Key(object p0, object p1, object p2, object p3, object p4) { throw null; }
ViewGen_Foreign_Key_LowerBound_MustBeOne(object p0, object p1, object p2)2675         public static string ViewGen_Foreign_Key_LowerBound_MustBeOne(object p0, object p1, object p2) { throw null; }
ViewGen_Foreign_Key_Missing_Relationship_Mapping(object p0)2676         public static string ViewGen_Foreign_Key_Missing_Relationship_Mapping(object p0) { throw null; }
ViewGen_Foreign_Key_Missing_Table_Mapping(object p0, object p1)2677         public static string ViewGen_Foreign_Key_Missing_Table_Mapping(object p0, object p1) { throw null; }
ViewGen_Foreign_Key_Not_Guaranteed_InCSpace(object p0)2678         public static string ViewGen_Foreign_Key_Not_Guaranteed_InCSpace(object p0) { throw null; }
ViewGen_Foreign_Key_ParentTable_NotMappedToEnd(object p0, object p1, object p2, object p3, object p4, object p5)2679         public static string ViewGen_Foreign_Key_ParentTable_NotMappedToEnd(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
ViewGen_Foreign_Key_UpperBound_MustBeOne(object p0, object p1, object p2)2680         public static string ViewGen_Foreign_Key_UpperBound_MustBeOne(object p0, object p1, object p2) { throw null; }
ViewGen_HashOnMappingClosure_Not_Matching(object p0)2681         public static string ViewGen_HashOnMappingClosure_Not_Matching(object p0) { throw null; }
ViewGen_InvalidCondition(object p0)2682         public static string ViewGen_InvalidCondition(object p0) { throw null; }
ViewGen_KeyConstraint_Update_Violation_AssociationSet(object p0, object p1, object p2)2683         public static string ViewGen_KeyConstraint_Update_Violation_AssociationSet(object p0, object p1, object p2) { throw null; }
ViewGen_KeyConstraint_Update_Violation_EntitySet(object p0, object p1, object p2, object p3)2684         public static string ViewGen_KeyConstraint_Update_Violation_EntitySet(object p0, object p1, object p2, object p3) { throw null; }
ViewGen_KeyConstraint_Violation(object p0, object p1, object p2, object p3, object p4, object p5)2685         public static string ViewGen_KeyConstraint_Violation(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
ViewGen_Missing_Sets_Mapping(object p0)2686         public static string ViewGen_Missing_Sets_Mapping(object p0) { throw null; }
ViewGen_Missing_Set_Mapping(object p0)2687         public static string ViewGen_Missing_Set_Mapping(object p0) { throw null; }
ViewGen_Missing_Type_Mapping(object p0)2688         public static string ViewGen_Missing_Type_Mapping(object p0) { throw null; }
Viewgen_MultipleFragmentsBetweenCandSExtentWithDistinct(object p0, object p1)2689         public static string Viewgen_MultipleFragmentsBetweenCandSExtentWithDistinct(object p0, object p1) { throw null; }
ViewGen_NegatedCellConstant(object p0)2690         public static string ViewGen_NegatedCellConstant(object p0) { throw null; }
ViewGen_NonKeyProjectedWithOverlappingPartitions(object p0)2691         public static string ViewGen_NonKeyProjectedWithOverlappingPartitions(object p0) { throw null; }
ViewGen_NotNull_No_Projected_Slot(object p0)2692         public static string ViewGen_NotNull_No_Projected_Slot(object p0) { throw null; }
ViewGen_No_Default_Value(object p0, object p1)2693         public static string ViewGen_No_Default_Value(object p0, object p1) { throw null; }
ViewGen_No_Default_Value_For_Configuration(object p0)2694         public static string ViewGen_No_Default_Value_For_Configuration(object p0) { throw null; }
Viewgen_NullableMappingForNonNullableColumn(object p0, object p1)2695         public static string Viewgen_NullableMappingForNonNullableColumn(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsEqualTo(object p0, object p1)2696         public static string ViewGen_OneOfConst_IsEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsNonNullable(object p0)2697         public static string ViewGen_OneOfConst_IsNonNullable(object p0) { throw null; }
ViewGen_OneOfConst_IsNotEqualTo(object p0, object p1)2698         public static string ViewGen_OneOfConst_IsNotEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsNotOneOf(object p0, object p1)2699         public static string ViewGen_OneOfConst_IsNotOneOf(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsOneOf(object p0, object p1)2700         public static string ViewGen_OneOfConst_IsOneOf(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsOneOfTypes(object p0)2701         public static string ViewGen_OneOfConst_IsOneOfTypes(object p0) { throw null; }
ViewGen_OneOfConst_MustBeEqualTo(object p0, object p1)2702         public static string ViewGen_OneOfConst_MustBeEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_MustBeNonNullable(object p0)2703         public static string ViewGen_OneOfConst_MustBeNonNullable(object p0) { throw null; }
ViewGen_OneOfConst_MustBeNull(object p0)2704         public static string ViewGen_OneOfConst_MustBeNull(object p0) { throw null; }
ViewGen_OneOfConst_MustBeOneOf(object p0, object p1)2705         public static string ViewGen_OneOfConst_MustBeOneOf(object p0, object p1) { throw null; }
ViewGen_OneOfConst_MustNotBeEqualTo(object p0, object p1)2706         public static string ViewGen_OneOfConst_MustNotBeEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_MustNotBeOneOf(object p0, object p1)2707         public static string ViewGen_OneOfConst_MustNotBeOneOf(object p0, object p1) { throw null; }
Viewgen_QV_RewritingNotFound(object p0)2708         public static string Viewgen_QV_RewritingNotFound(object p0) { throw null; }
Viewgen_RightSideNotDisjoint(object p0)2709         public static string Viewgen_RightSideNotDisjoint(object p0) { throw null; }
ViewGen_TableKey_Missing(object p0, object p1)2710         public static string ViewGen_TableKey_Missing(object p0, object p1) { throw null; }
2711     }
2712 }
2713 namespace System.Data.EntityClient
2714 {
2715     public sealed partial class EntityCommand : System.Data.Common.DbCommand
2716     {
EntityCommand()2717         public EntityCommand() { }
EntityCommand(string statement)2718         public EntityCommand(string statement) { }
EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection)2719         public EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection) { }
EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection, System.Data.EntityClient.EntityTransaction transaction)2720         public EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection, System.Data.EntityClient.EntityTransaction transaction) { }
2721         public override string CommandText { get { throw null; } set { } }
2722         public override int CommandTimeout { get { throw null; } set { } }
2723         public System.Data.Common.CommandTrees.DbCommandTree CommandTree { get { throw null; } set { } }
2724         public override System.Data.CommandType CommandType { get { throw null; } set { } }
2725         public new System.Data.EntityClient.EntityConnection Connection { get { throw null; } set { } }
2726         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
2727         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
2728         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
2729         public override bool DesignTimeVisible { get { throw null; } set { } }
2730         public bool EnablePlanCaching { get { throw null; } set { } }
2731         public new System.Data.EntityClient.EntityParameterCollection Parameters { get { throw null; } }
2732         public new System.Data.EntityClient.EntityTransaction Transaction { get { throw null; } set { } }
2733         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
Cancel()2734         public override void Cancel() { }
CreateDbParameter()2735         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()2736         public new System.Data.EntityClient.EntityParameter CreateParameter() { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)2737         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteNonQuery()2738         public override int ExecuteNonQuery() { throw null; }
ExecuteReader()2739         public new System.Data.EntityClient.EntityDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)2740         public new System.Data.EntityClient.EntityDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteScalar()2741         public override object ExecuteScalar() { throw null; }
Prepare()2742         public override void Prepare() { }
2743         [System.ComponentModel.BrowsableAttribute(false)]
ToTraceString()2744         public string ToTraceString() { throw null; }
2745     }
2746     public sealed partial class EntityConnection : System.Data.Common.DbConnection
2747     {
EntityConnection()2748         public EntityConnection() { }
EntityConnection(System.Data.Metadata.Edm.MetadataWorkspace workspace, System.Data.Common.DbConnection connection)2749         public EntityConnection(System.Data.Metadata.Edm.MetadataWorkspace workspace, System.Data.Common.DbConnection connection) { }
EntityConnection(string connectionString)2750         public EntityConnection(string connectionString) { }
2751         public override string ConnectionString { get { throw null; } set { } }
2752         public override int ConnectionTimeout { get { throw null; } }
2753         public override string Database { get { throw null; } }
2754         public override string DataSource { get { throw null; } }
2755         protected override System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
2756         public override string ServerVersion { get { throw null; } }
2757         public override System.Data.ConnectionState State { get { throw null; } }
2758         public System.Data.Common.DbConnection StoreConnection { get { throw null; } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)2759         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()2760         public new System.Data.EntityClient.EntityTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolationLevel)2761         public new System.Data.EntityClient.EntityTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
ChangeDatabase(string databaseName)2762         public override void ChangeDatabase(string databaseName) { }
Close()2763         public override void Close() { }
CreateCommand()2764         public new System.Data.EntityClient.EntityCommand CreateCommand() { throw null; }
CreateDbCommand()2765         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)2766         protected override void Dispose(bool disposing) { }
EnlistTransaction(System.Transactions.Transaction transaction)2767         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
2768         [System.CLSCompliantAttribute(false)]
GetMetadataWorkspace()2769         public System.Data.Metadata.Edm.MetadataWorkspace GetMetadataWorkspace() { throw null; }
Open()2770         public override void Open() { }
2771     }
2772     public sealed partial class EntityConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
2773     {
EntityConnectionStringBuilder()2774         public EntityConnectionStringBuilder() { }
EntityConnectionStringBuilder(string connectionString)2775         public EntityConnectionStringBuilder(string connectionString) { }
2776         public override bool IsFixedSize { get { throw null; } }
2777         public override object this[string keyword] { get { throw null; } set { } }
2778         public override System.Collections.ICollection Keys { get { throw null; } }
2779         [System.ComponentModel.DisplayNameAttribute("Metadata")]
2780         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2781         public string Metadata { get { throw null; } set { } }
2782         [System.ComponentModel.DisplayNameAttribute("Name")]
2783         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2784         public string Name { get { throw null; } set { } }
2785         [System.ComponentModel.DisplayNameAttribute("Provider")]
2786         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2787         public string Provider { get { throw null; } set { } }
2788         [System.ComponentModel.DisplayNameAttribute("Provider Connection String")]
2789         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2790         public string ProviderConnectionString { get { throw null; } set { } }
Clear()2791         public override void Clear() { }
ContainsKey(string keyword)2792         public override bool ContainsKey(string keyword) { throw null; }
Remove(string keyword)2793         public override bool Remove(string keyword) { throw null; }
TryGetValue(string keyword, out object value)2794         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
2795     }
2796     public partial class EntityDataReader : System.Data.Common.DbDataReader, System.Data.IDataRecord, System.Data.IExtendedDataRecord
2797     {
EntityDataReader()2798         internal EntityDataReader() { }
2799         public System.Data.Common.DataRecordInfo DataRecordInfo { get { throw null; } }
2800         public override int Depth { get { throw null; } }
2801         public override int FieldCount { get { throw null; } }
2802         public override bool HasRows { get { throw null; } }
2803         public override bool IsClosed { get { throw null; } }
2804         public override object this[int ordinal] { get { throw null; } }
2805         public override object this[string name] { get { throw null; } }
2806         public override int RecordsAffected { get { throw null; } }
2807         public override int VisibleFieldCount { get { throw null; } }
Close()2808         public override void Close() { }
Dispose(bool disposing)2809         protected override void Dispose(bool disposing) { }
GetBoolean(int ordinal)2810         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)2811         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length)2812         public override long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length) { throw null; }
GetChar(int ordinal)2813         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length)2814         public override long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length) { throw null; }
GetDataReader(int i)2815         public System.Data.Common.DbDataReader GetDataReader(int i) { throw null; }
GetDataRecord(int i)2816         public System.Data.Common.DbDataRecord GetDataRecord(int i) { throw null; }
GetDataTypeName(int ordinal)2817         public override string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)2818         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDbDataReader(int ordinal)2819         protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)2820         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)2821         public override double GetDouble(int ordinal) { throw null; }
GetEnumerator()2822         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int ordinal)2823         public override System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)2824         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)2825         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)2826         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)2827         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)2828         public override long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)2829         public override string GetName(int ordinal) { throw null; }
GetOrdinal(string name)2830         public override int GetOrdinal(string name) { throw null; }
2831         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificFieldType(int ordinal)2832         public override System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
2833         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValue(int ordinal)2834         public override object GetProviderSpecificValue(int ordinal) { throw null; }
2835         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValues(object[] values)2836         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()2837         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int ordinal)2838         public override string GetString(int ordinal) { throw null; }
GetValue(int ordinal)2839         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)2840         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)2841         public override bool IsDBNull(int ordinal) { throw null; }
NextResult()2842         public override bool NextResult() { throw null; }
Read()2843         public override bool Read() { throw null; }
2844     }
2845     public sealed partial class EntityParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter
2846     {
EntityParameter()2847         public EntityParameter() { }
EntityParameter(string parameterName, System.Data.DbType dbType)2848         public EntityParameter(string parameterName, System.Data.DbType dbType) { }
EntityParameter(string parameterName, System.Data.DbType dbType, int size)2849         public EntityParameter(string parameterName, System.Data.DbType dbType, int size) { }
EntityParameter(string parameterName, System.Data.DbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, object value)2850         public EntityParameter(string parameterName, System.Data.DbType dbType, int size, System.Data.ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, System.Data.DataRowVersion sourceVersion, object value) { }
EntityParameter(string parameterName, System.Data.DbType dbType, int size, string sourceColumn)2851         public EntityParameter(string parameterName, System.Data.DbType dbType, int size, string sourceColumn) { }
2852         public override System.Data.DbType DbType { get { throw null; } set { } }
2853         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2854         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
2855         public System.Data.Metadata.Edm.EdmType EdmType { get { throw null; } set { } }
2856         public override bool IsNullable { get { throw null; } set { } }
2857         public override string ParameterName { get { throw null; } set { } }
2858         public new byte Precision { get { throw null; } set { } }
2859         public new byte Scale { get { throw null; } set { } }
2860         public override int Size { get { throw null; } set { } }
2861         public override string SourceColumn { get { throw null; } set { } }
2862         public override bool SourceColumnNullMapping { get { throw null; } set { } }
2863         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
2864         public override object Value { get { throw null; } set { } }
ResetDbType()2865         public override void ResetDbType() { }
ToString()2866         public override string ToString() { throw null; }
2867     }
2868     public sealed partial class EntityParameterCollection : System.Data.Common.DbParameterCollection
2869     {
EntityParameterCollection()2870         internal EntityParameterCollection() { }
2871         public override int Count { get { throw null; } }
2872         public override bool IsFixedSize { get { throw null; } }
2873         public override bool IsReadOnly { get { throw null; } }
2874         public override bool IsSynchronized { get { throw null; } }
2875         public new System.Data.EntityClient.EntityParameter this[int index] { get { throw null; } set { } }
2876         public new System.Data.EntityClient.EntityParameter this[string parameterName] { get { throw null; } set { } }
2877         public override object SyncRoot { get { throw null; } }
Add(System.Data.EntityClient.EntityParameter value)2878         public System.Data.EntityClient.EntityParameter Add(System.Data.EntityClient.EntityParameter value) { throw null; }
2879         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)2880         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.DbType dbType)2881         public System.Data.EntityClient.EntityParameter Add(string parameterName, System.Data.DbType dbType) { throw null; }
Add(string parameterName, System.Data.DbType dbType, int size)2882         public System.Data.EntityClient.EntityParameter Add(string parameterName, System.Data.DbType dbType, int size) { throw null; }
AddRange(System.Array values)2883         public override void AddRange(System.Array values) { }
AddRange(System.Data.EntityClient.EntityParameter[] values)2884         public void AddRange(System.Data.EntityClient.EntityParameter[] values) { }
AddWithValue(string parameterName, object value)2885         public System.Data.EntityClient.EntityParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()2886         public override void Clear() { }
Contains(object value)2887         public override bool Contains(object value) { throw null; }
Contains(string parameterName)2888         public override bool Contains(string parameterName) { throw null; }
CopyTo(System.Array array, int index)2889         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.EntityClient.EntityParameter[] array, int index)2890         public void CopyTo(System.Data.EntityClient.EntityParameter[] array, int index) { }
GetEnumerator()2891         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)2892         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)2893         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.EntityClient.EntityParameter value)2894         public int IndexOf(System.Data.EntityClient.EntityParameter value) { throw null; }
IndexOf(object value)2895         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)2896         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.EntityClient.EntityParameter value)2897         public void Insert(int index, System.Data.EntityClient.EntityParameter value) { }
Insert(int index, object value)2898         public override void Insert(int index, object value) { }
Remove(System.Data.EntityClient.EntityParameter value)2899         public void Remove(System.Data.EntityClient.EntityParameter value) { }
Remove(object value)2900         public override void Remove(object value) { }
RemoveAt(int index)2901         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)2902         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)2903         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)2904         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
2905     }
2906     public sealed partial class EntityProviderFactory : System.Data.Common.DbProviderFactory, System.IServiceProvider
2907     {
EntityProviderFactory()2908         internal EntityProviderFactory() { }
2909         public static readonly System.Data.EntityClient.EntityProviderFactory Instance;
CreateCommand()2910         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()2911         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()2912         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()2913         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()2914         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateParameter()2915         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)2916         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
System.IServiceProvider.GetService(System.Type serviceType)2917         object System.IServiceProvider.GetService(System.Type serviceType) { throw null; }
2918     }
2919     public sealed partial class EntityTransaction : System.Data.Common.DbTransaction
2920     {
EntityTransaction()2921         internal EntityTransaction() { }
2922         public new System.Data.EntityClient.EntityConnection Connection { get { throw null; } }
2923         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
2924         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Commit()2925         public override void Commit() { }
Dispose(bool disposing)2926         protected override void Dispose(bool disposing) { }
Rollback()2927         public override void Rollback() { }
2928     }
2929 }
2930 namespace System.Data.Mapping
2931 {
2932     public abstract partial class EntityViewContainer
2933     {
EntityViewContainer()2934         protected EntityViewContainer() { }
2935         public string EdmEntityContainerName { get { throw null; } set { } }
2936         public string HashOverAllExtentViews { get { throw null; } set { } }
2937         public string HashOverMappingClosure { get { throw null; } set { } }
2938         public string StoreEntityContainerName { get { throw null; } set { } }
2939         public int ViewCount { get { throw null; } protected set { } }
GetViewAt(int index)2940         protected abstract System.Collections.Generic.KeyValuePair<string, string> GetViewAt(int index);
2941     }
2942     [System.AttributeUsageAttribute((System.AttributeTargets)(1), AllowMultiple=true)]
2943     public sealed partial class EntityViewGenerationAttribute : System.Attribute
2944     {
EntityViewGenerationAttribute(System.Type viewGenerationType)2945         public EntityViewGenerationAttribute(System.Type viewGenerationType) { }
2946         public System.Type ViewGenerationType { get { throw null; } }
2947     }
2948     [System.CLSCompliantAttribute(false)]
2949     public abstract partial class MappingItemCollection : System.Data.Metadata.Edm.ItemCollection
2950     {
MappingItemCollection()2951         internal MappingItemCollection() { }
2952     }
2953     [System.CLSCompliantAttribute(false)]
2954     public partial class StorageMappingItemCollection : System.Data.Mapping.MappingItemCollection
2955     {
StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders)2956         public StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, params string[] filePaths)2957         public StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, params string[] filePaths) { }
2958         public double MappingVersion { get { throw null; } }
2959     }
2960 }
2961 namespace System.Data.Metadata.Edm
2962 {
2963     public sealed partial class AssociationEndMember : System.Data.Metadata.Edm.RelationshipEndMember
2964     {
AssociationEndMember()2965         internal AssociationEndMember() { }
2966         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2967     }
2968     public sealed partial class AssociationSet : System.Data.Metadata.Edm.RelationshipSet
2969     {
AssociationSet()2970         internal AssociationSet() { }
2971         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.AssociationSetEnd> AssociationSetEnds { get { throw null; } }
2972         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2973         public new System.Data.Metadata.Edm.AssociationType ElementType { get { throw null; } }
2974     }
2975     public sealed partial class AssociationSetEnd : System.Data.Metadata.Edm.MetadataItem
2976     {
AssociationSetEnd()2977         internal AssociationSetEnd() { }
2978         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2979         public System.Data.Metadata.Edm.AssociationEndMember CorrespondingAssociationEndMember { get { throw null; } }
2980         public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
2981         public string Name { get { throw null; } }
2982         public System.Data.Metadata.Edm.AssociationSet ParentAssociationSet { get { throw null; } }
2983         [System.ObsoleteAttribute("This property is going away, please use the Name property instead")]
2984         public string Role { get { throw null; } }
ToString()2985         public override string ToString() { throw null; }
2986     }
2987     public sealed partial class AssociationType : System.Data.Metadata.Edm.RelationshipType
2988     {
AssociationType()2989         internal AssociationType() { }
2990         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.AssociationEndMember> AssociationEndMembers { get { throw null; } }
2991         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2992         public bool IsForeignKey { get { throw null; } }
2993         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.ReferentialConstraint> ReferentialConstraints { get { throw null; } }
2994     }
2995     public enum BuiltInTypeKind
2996     {
2997         AssociationEndMember = 0,
2998         AssociationSet = 2,
2999         AssociationSetEnd = 1,
3000         AssociationType = 3,
3001         CollectionKind = 7,
3002         CollectionType = 6,
3003         ComplexType = 8,
3004         Documentation = 9,
3005         EdmFunction = 18,
3006         EdmMember = 24,
3007         EdmProperty = 28,
3008         EdmType = 11,
3009         EntityContainer = 12,
3010         EntitySet = 13,
3011         EntitySetBase = 4,
3012         EntityType = 14,
3013         EntityTypeBase = 5,
3014         EnumMember = 16,
3015         EnumType = 15,
3016         Facet = 17,
3017         FunctionParameter = 19,
3018         GlobalItem = 20,
3019         MetadataItem = 23,
3020         MetadataProperty = 21,
3021         NavigationProperty = 22,
3022         OperationAction = 10,
3023         ParameterMode = 25,
3024         PrimitiveType = 26,
3025         PrimitiveTypeKind = 27,
3026         ProviderManifest = 29,
3027         ReferentialConstraint = 30,
3028         RefType = 31,
3029         RelationshipEndMember = 32,
3030         RelationshipMultiplicity = 33,
3031         RelationshipSet = 34,
3032         RelationshipType = 35,
3033         RowType = 36,
3034         SimpleType = 37,
3035         StructuralType = 38,
3036         TypeUsage = 39,
3037     }
3038     public enum CollectionKind
3039     {
3040         Bag = 1,
3041         List = 2,
3042         None = 0,
3043     }
3044     public sealed partial class CollectionType : System.Data.Metadata.Edm.EdmType
3045     {
CollectionType()3046         internal CollectionType() { }
3047         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3048         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
3049     }
3050     public partial class ComplexType : System.Data.Metadata.Edm.StructuralType
3051     {
ComplexType()3052         internal ComplexType() { }
3053         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3054         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
3055     }
3056     public enum ConcurrencyMode
3057     {
3058         Fixed = 1,
3059         None = 0,
3060     }
3061     public enum DataSpace
3062     {
3063         CSpace = 1,
3064         CSSpace = 4,
3065         OCSpace = 3,
3066         OSpace = 0,
3067         SSpace = 2,
3068     }
3069     public sealed partial class Documentation : System.Data.Metadata.Edm.MetadataItem
3070     {
Documentation()3071         internal Documentation() { }
3072         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3073         public bool IsEmpty { get { throw null; } }
3074         public string LongDescription { get { throw null; } }
3075         public string Summary { get { throw null; } }
ToString()3076         public override string ToString() { throw null; }
3077     }
3078     [System.SerializableAttribute]
3079     public abstract partial class EdmError
3080     {
EdmError()3081         internal EdmError() { }
3082         public string Message { get { throw null; } }
3083     }
3084     public sealed partial class EdmFunction : System.Data.Metadata.Edm.EdmType
3085     {
EdmFunction()3086         internal EdmFunction() { }
3087         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3088         public string CommandTextAttribute { get { throw null; } }
3089         public override string FullName { get { throw null; } }
3090         public bool IsComposableAttribute { get { throw null; } }
3091         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.FunctionParameter> Parameters { get { throw null; } }
3092         public System.Data.Metadata.Edm.FunctionParameter ReturnParameter { get { throw null; } }
3093         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.FunctionParameter> ReturnParameters { get { throw null; } }
3094     }
3095     [System.CLSCompliantAttribute(false)]
3096     public sealed partial class EdmItemCollection : System.Data.Metadata.Edm.ItemCollection
3097     {
EdmItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders)3098         public EdmItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
EdmItemCollection(params string[] filePaths)3099         public EdmItemCollection(params string[] filePaths) { }
3100         public double EdmVersion { get { throw null; } }
GetPrimitiveTypes()3101         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
GetPrimitiveTypes(double edmVersion)3102         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes(double edmVersion) { throw null; }
3103     }
3104     public abstract partial class EdmMember : System.Data.Metadata.Edm.MetadataItem
3105     {
EdmMember()3106         internal EdmMember() { }
3107         public System.Data.Metadata.Edm.StructuralType DeclaringType { get { throw null; } }
3108         public string Name { get { throw null; } }
3109         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
ToString()3110         public override string ToString() { throw null; }
3111     }
3112     public sealed partial class EdmProperty : System.Data.Metadata.Edm.EdmMember
3113     {
EdmProperty()3114         internal EdmProperty() { }
3115         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3116         public object DefaultValue { get { throw null; } }
3117         public bool Nullable { get { throw null; } }
3118     }
3119     [System.SerializableAttribute]
3120     public sealed partial class EdmSchemaError : System.Data.Metadata.Edm.EdmError
3121     {
EdmSchemaError()3122         internal EdmSchemaError() { }
3123         public int Column { get { throw null; } }
3124         public int ErrorCode { get { throw null; } }
3125         public int Line { get { throw null; } }
3126         public string SchemaLocation { get { throw null; } }
3127         public string SchemaName { get { throw null; } }
3128         public System.Data.Metadata.Edm.EdmSchemaErrorSeverity Severity { get { throw null; } set { } }
3129         public string StackTrace { get { throw null; } }
ToString()3130         public override string ToString() { throw null; }
3131     }
3132     public enum EdmSchemaErrorSeverity
3133     {
3134         Error = 1,
3135         Warning = 0,
3136     }
3137     public abstract partial class EdmType : System.Data.Metadata.Edm.GlobalItem
3138     {
EdmType()3139         internal EdmType() { }
3140         public bool Abstract { get { throw null; } }
3141         public System.Data.Metadata.Edm.EdmType BaseType { get { throw null; } }
3142         public virtual string FullName { get { throw null; } }
3143         public string Name { get { throw null; } }
3144         public string NamespaceName { get { throw null; } }
GetCollectionType()3145         public System.Data.Metadata.Edm.CollectionType GetCollectionType() { throw null; }
ToString()3146         public override string ToString() { throw null; }
3147     }
3148     public sealed partial class EntityContainer : System.Data.Metadata.Edm.GlobalItem
3149     {
EntityContainer()3150         internal EntityContainer() { }
3151         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EntitySetBase> BaseEntitySets { get { throw null; } }
3152         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3153         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmFunction> FunctionImports { get { throw null; } }
3154         public string Name { get { throw null; } }
GetEntitySetByName(string name, bool ignoreCase)3155         public System.Data.Metadata.Edm.EntitySet GetEntitySetByName(string name, bool ignoreCase) { throw null; }
GetRelationshipSetByName(string name, bool ignoreCase)3156         public System.Data.Metadata.Edm.RelationshipSet GetRelationshipSetByName(string name, bool ignoreCase) { throw null; }
ToString()3157         public override string ToString() { throw null; }
TryGetEntitySetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.EntitySet entitySet)3158         public bool TryGetEntitySetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.EntitySet entitySet) { entitySet = default(System.Data.Metadata.Edm.EntitySet); throw null; }
TryGetRelationshipSetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.RelationshipSet relationshipSet)3159         public bool TryGetRelationshipSetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.RelationshipSet relationshipSet) { relationshipSet = default(System.Data.Metadata.Edm.RelationshipSet); throw null; }
3160     }
3161     public partial class EntitySet : System.Data.Metadata.Edm.EntitySetBase
3162     {
EntitySet()3163         internal EntitySet() { }
3164         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3165         public new System.Data.Metadata.Edm.EntityType ElementType { get { throw null; } }
3166     }
3167     public abstract partial class EntitySetBase : System.Data.Metadata.Edm.MetadataItem
3168     {
EntitySetBase()3169         internal EntitySetBase() { }
3170         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3171         public System.Data.Metadata.Edm.EntityTypeBase ElementType { get { throw null; } }
3172         public System.Data.Metadata.Edm.EntityContainer EntityContainer { get { throw null; } }
3173         public string Name { get { throw null; } }
ToString()3174         public override string ToString() { throw null; }
3175     }
3176     public partial class EntityType : System.Data.Metadata.Edm.EntityTypeBase
3177     {
EntityType()3178         internal EntityType() { }
3179         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3180         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.NavigationProperty> NavigationProperties { get { throw null; } }
3181         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
GetReferenceType()3182         public System.Data.Metadata.Edm.RefType GetReferenceType() { throw null; }
3183     }
3184     public abstract partial class EntityTypeBase : System.Data.Metadata.Edm.StructuralType
3185     {
EntityTypeBase()3186         internal EntityTypeBase() { }
3187         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmMember> KeyMembers { get { throw null; } }
3188     }
3189     public sealed partial class EnumMember : System.Data.Metadata.Edm.MetadataItem
3190     {
EnumMember()3191         internal EnumMember() { }
3192         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3193         public string Name { get { throw null; } }
3194         public object Value { get { throw null; } }
ToString()3195         public override string ToString() { throw null; }
3196     }
3197     public partial class EnumType : System.Data.Metadata.Edm.SimpleType
3198     {
EnumType()3199         internal EnumType() { }
3200         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3201         public bool IsFlags { get { throw null; } }
3202         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EnumMember> Members { get { throw null; } }
3203         public System.Data.Metadata.Edm.PrimitiveType UnderlyingType { get { throw null; } }
3204     }
3205     [System.Diagnostics.DebuggerDisplayAttribute("{Name,nq}={Value}")]
3206     public sealed partial class Facet : System.Data.Metadata.Edm.MetadataItem
3207     {
Facet()3208         internal Facet() { }
3209         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3210         public System.Data.Metadata.Edm.FacetDescription Description { get { throw null; } }
3211         public System.Data.Metadata.Edm.EdmType FacetType { get { throw null; } }
3212         public bool IsUnbounded { get { throw null; } }
3213         public string Name { get { throw null; } }
3214         public object Value { get { throw null; } }
ToString()3215         public override string ToString() { throw null; }
3216     }
3217     public sealed partial class FacetDescription
3218     {
FacetDescription()3219         internal FacetDescription() { }
3220         public object DefaultValue { get { throw null; } }
3221         public string FacetName { get { throw null; } }
3222         public System.Data.Metadata.Edm.EdmType FacetType { get { throw null; } }
3223         public bool IsConstant { get { throw null; } }
3224         public bool IsRequired { get { throw null; } }
3225         public System.Nullable<int> MaxValue { get { throw null; } }
3226         public System.Nullable<int> MinValue { get { throw null; } }
ToString()3227         public override string ToString() { throw null; }
3228     }
3229     public sealed partial class FunctionParameter : System.Data.Metadata.Edm.MetadataItem
3230     {
FunctionParameter()3231         internal FunctionParameter() { }
3232         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3233         public System.Data.Metadata.Edm.EdmFunction DeclaringFunction { get { throw null; } }
3234         public System.Data.Metadata.Edm.ParameterMode Mode { get { throw null; } }
3235         public string Name { get { throw null; } }
3236         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
ToString()3237         public override string ToString() { throw null; }
3238     }
3239     public abstract partial class GlobalItem : System.Data.Metadata.Edm.MetadataItem
3240     {
GlobalItem()3241         internal GlobalItem() { }
3242     }
3243     [System.CLSCompliantAttribute(false)]
3244     public abstract partial class ItemCollection : System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.GlobalItem>
3245     {
ItemCollection()3246         internal ItemCollection() { }
3247         public System.Data.Metadata.Edm.DataSpace DataSpace { get { throw null; } }
GetEntityContainer(string name)3248         public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name) { throw null; }
GetEntityContainer(string name, bool ignoreCase)3249         public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name, bool ignoreCase) { throw null; }
GetFunctions(System.Collections.Generic.Dictionary<string, System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>> functionCollection, string functionName, bool ignoreCase)3250         protected static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(System.Collections.Generic.Dictionary<string, System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction>> functionCollection, string functionName, bool ignoreCase) { throw null; }
GetFunctions(string functionName)3251         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string functionName) { throw null; }
GetFunctions(string functionName, bool ignoreCase)3252         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string functionName, bool ignoreCase) { throw null; }
3253         public virtual System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>() where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3254         public T GetItem<T>(string identity) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3255         public T GetItem<T>(string identity, bool ignoreCase) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
GetType(string name, string namespaceName)3256         public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName) { throw null; }
GetType(string name, string namespaceName, bool ignoreCase)3257         public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName, bool ignoreCase) { throw null; }
TryGetEntityContainer(string name, bool ignoreCase, out System.Data.Metadata.Edm.EntityContainer entityContainer)3258         public bool TryGetEntityContainer(string name, bool ignoreCase, out System.Data.Metadata.Edm.EntityContainer entityContainer) { entityContainer = default(System.Data.Metadata.Edm.EntityContainer); throw null; }
TryGetEntityContainer(string name, out System.Data.Metadata.Edm.EntityContainer entityContainer)3259         public bool TryGetEntityContainer(string name, out System.Data.Metadata.Edm.EntityContainer entityContainer) { entityContainer = default(System.Data.Metadata.Edm.EntityContainer); throw null; }
3260         public bool TryGetItem<T>(string identity, bool ignoreCase, out T item) where T : System.Data.Metadata.Edm.GlobalItem { item = default(T); throw null; }
3261         public bool TryGetItem<T>(string identity, out T item) where T : System.Data.Metadata.Edm.GlobalItem { item = default(T); throw null; }
TryGetType(string name, string namespaceName, bool ignoreCase, out System.Data.Metadata.Edm.EdmType type)3262         public bool TryGetType(string name, string namespaceName, bool ignoreCase, out System.Data.Metadata.Edm.EdmType type) { type = default(System.Data.Metadata.Edm.EdmType); throw null; }
TryGetType(string name, string namespaceName, out System.Data.Metadata.Edm.EdmType type)3263         public bool TryGetType(string name, string namespaceName, out System.Data.Metadata.Edm.EdmType type) { type = default(System.Data.Metadata.Edm.EdmType); throw null; }
3264     }
3265     public abstract partial class MetadataItem
3266     {
MetadataItem()3267         internal MetadataItem() { }
3268         public abstract System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get; }
3269         public System.Data.Metadata.Edm.Documentation Documentation { get { throw null; } set { } }
3270         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.MetadataProperty> MetadataProperties { get { throw null; } }
GetBuiltInType(System.Data.Metadata.Edm.BuiltInTypeKind builtInTypeKind)3271         public static System.Data.Metadata.Edm.EdmType GetBuiltInType(System.Data.Metadata.Edm.BuiltInTypeKind builtInTypeKind) { throw null; }
GetGeneralFacetDescriptions()3272         public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetGeneralFacetDescriptions() { throw null; }
3273     }
3274     public sealed partial class MetadataProperty : System.Data.Metadata.Edm.MetadataItem
3275     {
MetadataProperty()3276         internal MetadataProperty() { }
3277         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3278         public string Name { get { throw null; } }
3279         public System.Data.Metadata.Edm.PropertyKind PropertyKind { get { throw null; } }
3280         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
3281         public object Value { get { throw null; } }
3282     }
3283     public sealed partial class MetadataWorkspace
3284     {
3285         public static readonly double MaximumEdmVersionSupported;
MetadataWorkspace()3286         public MetadataWorkspace() { }
MetadataWorkspace(System.Collections.Generic.IEnumerable<string> paths, System.Collections.Generic.IEnumerable<System.Reflection.Assembly> assembliesToConsider)3287         public MetadataWorkspace(System.Collections.Generic.IEnumerable<string> paths, System.Collections.Generic.IEnumerable<System.Reflection.Assembly> assembliesToConsider) { }
ClearCache()3288         public static void ClearCache() { }
CreateEntitySqlParser()3289         public System.Data.Common.EntitySql.EntitySqlParser CreateEntitySqlParser() { throw null; }
CreateQueryCommandTree(System.Data.Common.CommandTrees.DbExpression query)3290         public System.Data.Common.CommandTrees.DbQueryCommandTree CreateQueryCommandTree(System.Data.Common.CommandTrees.DbExpression query) { throw null; }
GetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType)3291         public System.Data.Metadata.Edm.EnumType GetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType) { throw null; }
GetEdmSpaceType(System.Data.Metadata.Edm.StructuralType objectSpaceType)3292         public System.Data.Metadata.Edm.StructuralType GetEdmSpaceType(System.Data.Metadata.Edm.StructuralType objectSpaceType) { throw null; }
GetEntityContainer(string name, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace)3293         public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
GetEntityContainer(string name, System.Data.Metadata.Edm.DataSpace dataSpace)3294         public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace)3295         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace, bool ignoreCase)3296         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace, bool ignoreCase) { throw null; }
3297         [System.CLSCompliantAttribute(false)]
GetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace)3298         public System.Data.Metadata.Edm.ItemCollection GetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
GetItems(System.Data.Metadata.Edm.DataSpace dataSpace)3299         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.GlobalItem> GetItems(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
3300         public System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>(System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3301         public T GetItem<T>(string identity, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3302         public T GetItem<T>(string identity, System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
GetObjectSpaceType(System.Data.Metadata.Edm.EnumType edmSpaceType)3303         public System.Data.Metadata.Edm.EnumType GetObjectSpaceType(System.Data.Metadata.Edm.EnumType edmSpaceType) { throw null; }
GetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType)3304         public System.Data.Metadata.Edm.StructuralType GetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType) { throw null; }
GetPrimitiveTypes(System.Data.Metadata.Edm.DataSpace dataSpace)3305         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
GetRelevantMembersForUpdate(System.Data.Metadata.Edm.EntitySetBase entitySet, System.Data.Metadata.Edm.EntityTypeBase entityType, bool partialUpdateSupported)3306         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmMember> GetRelevantMembersForUpdate(System.Data.Metadata.Edm.EntitySetBase entitySet, System.Data.Metadata.Edm.EntityTypeBase entityType, bool partialUpdateSupported) { throw null; }
3307         [System.ObsoleteAttribute("Use MetadataWorkspace.GetRelevantMembersForUpdate(EntitySetBase, EntityTypeBase, bool) instead")]
GetRequiredOriginalValueMembers(System.Data.Metadata.Edm.EntitySetBase entitySet, System.Data.Metadata.Edm.EntityTypeBase entityType)3308         public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> GetRequiredOriginalValueMembers(System.Data.Metadata.Edm.EntitySetBase entitySet, System.Data.Metadata.Edm.EntityTypeBase entityType) { throw null; }
GetType(string name, string namespaceName, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace)3309         public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
GetType(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace)3310         public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
LoadFromAssembly(System.Reflection.Assembly assembly)3311         public void LoadFromAssembly(System.Reflection.Assembly assembly) { }
LoadFromAssembly(System.Reflection.Assembly assembly, System.Action<string> logLoadMessage)3312         public void LoadFromAssembly(System.Reflection.Assembly assembly, System.Action<string> logLoadMessage) { }
3313         [System.CLSCompliantAttribute(false)]
RegisterItemCollection(System.Data.Metadata.Edm.ItemCollection collection)3314         public void RegisterItemCollection(System.Data.Metadata.Edm.ItemCollection collection) { }
TryGetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType, out System.Data.Metadata.Edm.EnumType edmSpaceType)3315         public bool TryGetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType, out System.Data.Metadata.Edm.EnumType edmSpaceType) { edmSpaceType = default(System.Data.Metadata.Edm.EnumType); throw null; }
TryGetEdmSpaceType(System.Data.Metadata.Edm.StructuralType objectSpaceType, out System.Data.Metadata.Edm.StructuralType edmSpaceType)3316         public bool TryGetEdmSpaceType(System.Data.Metadata.Edm.StructuralType objectSpaceType, out System.Data.Metadata.Edm.StructuralType edmSpaceType) { edmSpaceType = default(System.Data.Metadata.Edm.StructuralType); throw null; }
TryGetEntityContainer(string name, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EntityContainer entityContainer)3317         public bool TryGetEntityContainer(string name, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EntityContainer entityContainer) { entityContainer = default(System.Data.Metadata.Edm.EntityContainer); throw null; }
TryGetEntityContainer(string name, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EntityContainer entityContainer)3318         public bool TryGetEntityContainer(string name, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EntityContainer entityContainer) { entityContainer = default(System.Data.Metadata.Edm.EntityContainer); throw null; }
3319         [System.CLSCompliantAttribute(false)]
TryGetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.ItemCollection collection)3320         public bool TryGetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.ItemCollection collection) { collection = default(System.Data.Metadata.Edm.ItemCollection); throw null; }
3321         public bool TryGetItem<T>(string identity, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out T item) where T : System.Data.Metadata.Edm.GlobalItem { item = default(T); throw null; }
3322         public bool TryGetItem<T>(string identity, System.Data.Metadata.Edm.DataSpace space, out T item) where T : System.Data.Metadata.Edm.GlobalItem { item = default(T); throw null; }
TryGetObjectSpaceType(System.Data.Metadata.Edm.EnumType edmSpaceType, out System.Data.Metadata.Edm.EnumType objectSpaceType)3323         public bool TryGetObjectSpaceType(System.Data.Metadata.Edm.EnumType edmSpaceType, out System.Data.Metadata.Edm.EnumType objectSpaceType) { objectSpaceType = default(System.Data.Metadata.Edm.EnumType); throw null; }
TryGetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType, out System.Data.Metadata.Edm.StructuralType objectSpaceType)3324         public bool TryGetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType, out System.Data.Metadata.Edm.StructuralType objectSpaceType) { objectSpaceType = default(System.Data.Metadata.Edm.StructuralType); throw null; }
TryGetType(string name, string namespaceName, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EdmType type)3325         public bool TryGetType(string name, string namespaceName, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EdmType type) { type = default(System.Data.Metadata.Edm.EdmType); throw null; }
TryGetType(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EdmType type)3326         public bool TryGetType(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.EdmType type) { type = default(System.Data.Metadata.Edm.EdmType); throw null; }
3327     }
3328     public sealed partial class NavigationProperty : System.Data.Metadata.Edm.EdmMember
3329     {
NavigationProperty()3330         internal NavigationProperty() { }
3331         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3332         public System.Data.Metadata.Edm.RelationshipEndMember FromEndMember { get { throw null; } }
3333         public System.Data.Metadata.Edm.RelationshipType RelationshipType { get { throw null; } }
3334         public System.Data.Metadata.Edm.RelationshipEndMember ToEndMember { get { throw null; } }
GetDependentProperties()3335         public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmProperty> GetDependentProperties() { throw null; }
3336     }
3337     [System.CLSCompliantAttribute(false)]
3338     public sealed partial class ObjectItemCollection : System.Data.Metadata.Edm.ItemCollection
3339     {
ObjectItemCollection()3340         public ObjectItemCollection() { }
GetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType)3341         public System.Type GetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType) { throw null; }
GetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType)3342         public System.Type GetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType) { throw null; }
GetItems()3343         public override System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>() { throw null; }
GetPrimitiveTypes()3344         public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
LoadFromAssembly(System.Reflection.Assembly assembly)3345         public void LoadFromAssembly(System.Reflection.Assembly assembly) { }
LoadFromAssembly(System.Reflection.Assembly assembly, System.Data.Metadata.Edm.EdmItemCollection edmItemCollection)3346         public void LoadFromAssembly(System.Reflection.Assembly assembly, System.Data.Metadata.Edm.EdmItemCollection edmItemCollection) { }
LoadFromAssembly(System.Reflection.Assembly assembly, System.Data.Metadata.Edm.EdmItemCollection edmItemCollection, System.Action<string> logLoadMessage)3347         public void LoadFromAssembly(System.Reflection.Assembly assembly, System.Data.Metadata.Edm.EdmItemCollection edmItemCollection, System.Action<string> logLoadMessage) { }
TryGetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType, out System.Type clrType)3348         public bool TryGetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType, out System.Type clrType) { clrType = default(System.Type); throw null; }
TryGetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType, out System.Type clrType)3349         public bool TryGetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType, out System.Type clrType) { clrType = default(System.Type); throw null; }
3350     }
3351     public enum OperationAction
3352     {
3353         Cascade = 1,
3354         None = 0,
3355         Restrict = 2,
3356     }
3357     public enum ParameterMode
3358     {
3359         In = 0,
3360         InOut = 2,
3361         Out = 1,
3362         ReturnValue = 3,
3363     }
3364     public enum ParameterTypeSemantics
3365     {
3366         AllowImplicitConversion = 0,
3367         AllowImplicitPromotion = 1,
3368         ExactMatchOnly = 2,
3369     }
3370     public sealed partial class PrimitiveType : System.Data.Metadata.Edm.SimpleType
3371     {
PrimitiveType()3372         internal PrimitiveType() { }
3373         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3374         public System.Type ClrEquivalentType { get { throw null; } }
3375         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> FacetDescriptions { get { throw null; } }
3376         public System.Data.Metadata.Edm.PrimitiveTypeKind PrimitiveTypeKind { get { throw null; } }
GetEdmPrimitiveType()3377         public System.Data.Metadata.Edm.EdmType GetEdmPrimitiveType() { throw null; }
GetEdmPrimitiveType(System.Data.Metadata.Edm.PrimitiveTypeKind primitiveTypeKind)3378         public static System.Data.Metadata.Edm.PrimitiveType GetEdmPrimitiveType(System.Data.Metadata.Edm.PrimitiveTypeKind primitiveTypeKind) { throw null; }
GetEdmPrimitiveTypes()3379         public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetEdmPrimitiveTypes() { throw null; }
3380     }
3381     public enum PrimitiveTypeKind
3382     {
3383         Binary = 0,
3384         Boolean = 1,
3385         Byte = 2,
3386         DateTime = 3,
3387         DateTimeOffset = 14,
3388         Decimal = 4,
3389         Double = 5,
3390         Geography = 16,
3391         GeographyCollection = 30,
3392         GeographyLineString = 25,
3393         GeographyMultiLineString = 28,
3394         GeographyMultiPoint = 27,
3395         GeographyMultiPolygon = 29,
3396         GeographyPoint = 24,
3397         GeographyPolygon = 26,
3398         Geometry = 15,
3399         GeometryCollection = 23,
3400         GeometryLineString = 18,
3401         GeometryMultiLineString = 21,
3402         GeometryMultiPoint = 20,
3403         GeometryMultiPolygon = 22,
3404         GeometryPoint = 17,
3405         GeometryPolygon = 19,
3406         Guid = 6,
3407         Int16 = 9,
3408         Int32 = 10,
3409         Int64 = 11,
3410         SByte = 8,
3411         Single = 7,
3412         String = 12,
3413         Time = 13,
3414     }
3415     public enum PropertyKind
3416     {
3417         Extended = 1,
3418         System = 0,
3419     }
3420     public partial class ReadOnlyMetadataCollection<T> : System.Collections.ObjectModel.ReadOnlyCollection<T> where T : System.Data.Metadata.Edm.MetadataItem
3421     {
ReadOnlyMetadataCollection()3422         internal ReadOnlyMetadataCollection() : base (default(System.Collections.Generic.IList<T>)) { }
3423         public bool IsReadOnly { get { throw null; } }
3424         public virtual T this[string identity] { get { throw null; } }
Contains(string identity)3425         public virtual bool Contains(string identity) { throw null; }
GetEnumerator()3426         public new System.Data.Metadata.Edm.ReadOnlyMetadataCollection<T>.Enumerator GetEnumerator() { throw null; }
GetValue(string identity, bool ignoreCase)3427         public virtual T GetValue(string identity, bool ignoreCase) { throw null; }
IndexOf(T value)3428         public virtual new int IndexOf(T value) { throw null; }
TryGetValue(string identity, bool ignoreCase, out T item)3429         public virtual bool TryGetValue(string identity, bool ignoreCase, out T item) { item = default(T); throw null; }
3430         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3431         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
3432         {
3433             public T Current { get { throw null; } }
3434             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Data.Metadata.Edm.ReadOnlyMetadataCollection.Enumerator3435             public void Dispose() { }
MoveNextSystem.Data.Metadata.Edm.ReadOnlyMetadataCollection.Enumerator3436             public bool MoveNext() { throw null; }
ResetSystem.Data.Metadata.Edm.ReadOnlyMetadataCollection.Enumerator3437             public void Reset() { }
3438         }
3439     }
3440     public sealed partial class ReferentialConstraint : System.Data.Metadata.Edm.MetadataItem
3441     {
ReferentialConstraint()3442         internal ReferentialConstraint() { }
3443         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3444         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> FromProperties { get { throw null; } }
3445         public System.Data.Metadata.Edm.RelationshipEndMember FromRole { get { throw null; } }
3446         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> ToProperties { get { throw null; } }
3447         public System.Data.Metadata.Edm.RelationshipEndMember ToRole { get { throw null; } }
ToString()3448         public override string ToString() { throw null; }
3449     }
3450     public sealed partial class RefType : System.Data.Metadata.Edm.EdmType
3451     {
RefType()3452         internal RefType() { }
3453         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3454         public System.Data.Metadata.Edm.EntityTypeBase ElementType { get { throw null; } }
3455     }
3456     public abstract partial class RelationshipEndMember : System.Data.Metadata.Edm.EdmMember
3457     {
RelationshipEndMember()3458         internal RelationshipEndMember() { }
3459         public System.Data.Metadata.Edm.OperationAction DeleteBehavior { get { throw null; } }
3460         public System.Data.Metadata.Edm.RelationshipMultiplicity RelationshipMultiplicity { get { throw null; } }
GetEntityType()3461         public System.Data.Metadata.Edm.EntityType GetEntityType() { throw null; }
3462     }
3463     public enum RelationshipMultiplicity
3464     {
3465         Many = 2,
3466         One = 1,
3467         ZeroOrOne = 0,
3468     }
3469     public abstract partial class RelationshipSet : System.Data.Metadata.Edm.EntitySetBase
3470     {
RelationshipSet()3471         internal RelationshipSet() { }
3472         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3473         public new System.Data.Metadata.Edm.RelationshipType ElementType { get { throw null; } }
3474     }
3475     public abstract partial class RelationshipType : System.Data.Metadata.Edm.EntityTypeBase
3476     {
RelationshipType()3477         internal RelationshipType() { }
3478         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.RelationshipEndMember> RelationshipEndMembers { get { throw null; } }
3479     }
3480     public sealed partial class RowType : System.Data.Metadata.Edm.StructuralType
3481     {
RowType()3482         internal RowType() { }
3483         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3484         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
3485     }
3486     public abstract partial class SimpleType : System.Data.Metadata.Edm.EdmType
3487     {
SimpleType()3488         internal SimpleType() { }
3489     }
3490     public enum StoreGeneratedPattern
3491     {
3492         Computed = 2,
3493         Identity = 1,
3494         None = 0,
3495     }
3496     [System.CLSCompliantAttribute(false)]
3497     public sealed partial class StoreItemCollection : System.Data.Metadata.Edm.ItemCollection
3498     {
StoreItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders)3499         public StoreItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
StoreItemCollection(params string[] filePaths)3500         public StoreItemCollection(params string[] filePaths) { }
3501         public double StoreSchemaVersion { get { throw null; } }
GetPrimitiveTypes()3502         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
3503     }
3504     public abstract partial class StructuralType : System.Data.Metadata.Edm.EdmType
3505     {
StructuralType()3506         internal StructuralType() { }
3507         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmMember> Members { get { throw null; } }
3508     }
3509     [System.Diagnostics.DebuggerDisplayAttribute("EdmType={EdmType}, Facets.Count={Facets.Count}")]
3510     public sealed partial class TypeUsage : System.Data.Metadata.Edm.MetadataItem
3511     {
TypeUsage()3512         internal TypeUsage() { }
3513         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3514         public System.Data.Metadata.Edm.EdmType EdmType { get { throw null; } }
3515         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.Facet> Facets { get { throw null; } }
CreateBinaryTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isFixedLength)3516         public static System.Data.Metadata.Edm.TypeUsage CreateBinaryTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isFixedLength) { throw null; }
CreateBinaryTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isFixedLength, int maxLength)3517         public static System.Data.Metadata.Edm.TypeUsage CreateBinaryTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isFixedLength, int maxLength) { throw null; }
CreateDateTimeOffsetTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision)3518         public static System.Data.Metadata.Edm.TypeUsage CreateDateTimeOffsetTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision) { throw null; }
CreateDateTimeTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision)3519         public static System.Data.Metadata.Edm.TypeUsage CreateDateTimeTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision) { throw null; }
CreateDecimalTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType)3520         public static System.Data.Metadata.Edm.TypeUsage CreateDecimalTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType) { throw null; }
CreateDecimalTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, byte precision, byte scale)3521         public static System.Data.Metadata.Edm.TypeUsage CreateDecimalTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, byte precision, byte scale) { throw null; }
CreateDefaultTypeUsage(System.Data.Metadata.Edm.EdmType edmType)3522         public static System.Data.Metadata.Edm.TypeUsage CreateDefaultTypeUsage(System.Data.Metadata.Edm.EdmType edmType) { throw null; }
CreateStringTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength)3523         public static System.Data.Metadata.Edm.TypeUsage CreateStringTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength) { throw null; }
CreateStringTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength, int maxLength)3524         public static System.Data.Metadata.Edm.TypeUsage CreateStringTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isUnicode, bool isFixedLength, int maxLength) { throw null; }
CreateTimeTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision)3525         public static System.Data.Metadata.Edm.TypeUsage CreateTimeTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, System.Nullable<byte> precision) { throw null; }
IsSubtypeOf(System.Data.Metadata.Edm.TypeUsage typeUsage)3526         public bool IsSubtypeOf(System.Data.Metadata.Edm.TypeUsage typeUsage) { throw null; }
ToString()3527         public override string ToString() { throw null; }
3528     }
3529 }
3530 namespace System.Data.Objects
3531 {
3532     public sealed partial class CompiledQuery
3533     {
CompiledQuery()3534         internal CompiledQuery() { }
3535         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3536         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3537         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3538         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3539         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3540         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3541         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3542         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TArg15, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TArg15, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TArg8, TArg9, TArg10, TArg11, TArg12, TArg13, TArg14, TArg15, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3543         public static System.Func<TArg0, TResult> Compile<TArg0, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3544         public static System.Func<TArg0, TArg1, TResult> Compile<TArg0, TArg1, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3545         public static System.Func<TArg0, TArg1, TArg2, TResult> Compile<TArg0, TArg1, TArg2, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3546         public static System.Func<TArg0, TArg1, TArg2, TArg3, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3547         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3548         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3549         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3550         public static System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TResult> Compile<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TResult>(System.Linq.Expressions.Expression<System.Func<TArg0, TArg1, TArg2, TArg3, TArg4, TArg5, TArg6, TArg7, TResult>> query) where TArg0 : System.Data.Objects.ObjectContext { throw null; }
3551     }
3552     public abstract partial class CurrentValueRecord : System.Data.Objects.DbUpdatableDataRecord
3553     {
CurrentValueRecord()3554         internal CurrentValueRecord() { }
3555     }
3556     public abstract partial class DbUpdatableDataRecord : System.Data.Common.DbDataRecord, System.Data.IDataRecord, System.Data.IExtendedDataRecord
3557     {
DbUpdatableDataRecord()3558         internal DbUpdatableDataRecord() { }
3559         public virtual System.Data.Common.DataRecordInfo DataRecordInfo { get { throw null; } }
3560         public override int FieldCount { get { throw null; } }
3561         public override object this[int ordinal] { get { throw null; } }
3562         public override object this[string name] { get { throw null; } }
GetBoolean(int ordinal)3563         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)3564         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)3565         public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int ordinal)3566         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)3567         public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataReader(int i)3568         public System.Data.Common.DbDataReader GetDataReader(int i) { throw null; }
GetDataRecord(int ordinal)3569         public System.Data.Common.DbDataRecord GetDataRecord(int ordinal) { throw null; }
GetDataTypeName(int ordinal)3570         public override string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)3571         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDbDataReader(int ordinal)3572         protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)3573         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)3574         public override double GetDouble(int ordinal) { throw null; }
GetFieldType(int ordinal)3575         public override System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)3576         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)3577         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)3578         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)3579         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)3580         public override long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)3581         public override string GetName(int ordinal) { throw null; }
GetOrdinal(string name)3582         public override int GetOrdinal(string name) { throw null; }
GetRecordValue(int ordinal)3583         protected abstract object GetRecordValue(int ordinal);
GetString(int ordinal)3584         public override string GetString(int ordinal) { throw null; }
GetValue(int ordinal)3585         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)3586         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)3587         public override bool IsDBNull(int ordinal) { throw null; }
SetBoolean(int ordinal, bool value)3588         public void SetBoolean(int ordinal, bool value) { }
SetByte(int ordinal, byte value)3589         public void SetByte(int ordinal, byte value) { }
SetChar(int ordinal, char value)3590         public void SetChar(int ordinal, char value) { }
SetDataRecord(int ordinal, System.Data.IDataRecord value)3591         public void SetDataRecord(int ordinal, System.Data.IDataRecord value) { }
SetDateTime(int ordinal, System.DateTime value)3592         public void SetDateTime(int ordinal, System.DateTime value) { }
SetDBNull(int ordinal)3593         public void SetDBNull(int ordinal) { }
SetDecimal(int ordinal, decimal value)3594         public void SetDecimal(int ordinal, decimal value) { }
SetDouble(int ordinal, double value)3595         public void SetDouble(int ordinal, double value) { }
SetFloat(int ordinal, float value)3596         public void SetFloat(int ordinal, float value) { }
SetGuid(int ordinal, System.Guid value)3597         public void SetGuid(int ordinal, System.Guid value) { }
SetInt16(int ordinal, short value)3598         public void SetInt16(int ordinal, short value) { }
SetInt32(int ordinal, int value)3599         public void SetInt32(int ordinal, int value) { }
SetInt64(int ordinal, long value)3600         public void SetInt64(int ordinal, long value) { }
SetRecordValue(int ordinal, object value)3601         protected abstract void SetRecordValue(int ordinal, object value);
SetString(int ordinal, string value)3602         public void SetString(int ordinal, string value) { }
SetValue(int ordinal, object value)3603         public void SetValue(int ordinal, object value) { }
SetValues(params object[] values)3604         public int SetValues(params object[] values) { throw null; }
System.Data.IDataRecord.GetData(int ordinal)3605         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
3606     }
3607     public static partial class EntityFunctions
3608     {
3609         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddDays")]
AddDays(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue)3610         public static System.Nullable<System.DateTimeOffset> AddDays(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
3611         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddDays")]
AddDays(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue)3612         public static System.Nullable<System.DateTime> AddDays(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
3613         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
AddHours(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3614         public static System.Nullable<System.DateTimeOffset> AddHours(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3615         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
AddHours(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3616         public static System.Nullable<System.DateTime> AddHours(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3617         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
AddHours(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3618         public static System.Nullable<System.TimeSpan> AddHours(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3619         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
AddMicroseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3620         public static System.Nullable<System.DateTimeOffset> AddMicroseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3621         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
AddMicroseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3622         public static System.Nullable<System.DateTime> AddMicroseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3623         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
AddMicroseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3624         public static System.Nullable<System.TimeSpan> AddMicroseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3625         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
AddMilliseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3626         public static System.Nullable<System.DateTimeOffset> AddMilliseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3627         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
AddMilliseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3628         public static System.Nullable<System.DateTime> AddMilliseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3629         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
AddMilliseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3630         public static System.Nullable<System.TimeSpan> AddMilliseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3631         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
AddMinutes(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3632         public static System.Nullable<System.DateTimeOffset> AddMinutes(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3633         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
AddMinutes(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3634         public static System.Nullable<System.DateTime> AddMinutes(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3635         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
AddMinutes(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3636         public static System.Nullable<System.TimeSpan> AddMinutes(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3637         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMonths")]
AddMonths(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue)3638         public static System.Nullable<System.DateTimeOffset> AddMonths(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
3639         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMonths")]
AddMonths(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue)3640         public static System.Nullable<System.DateTime> AddMonths(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
3641         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
AddNanoseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3642         public static System.Nullable<System.DateTimeOffset> AddNanoseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3643         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
AddNanoseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3644         public static System.Nullable<System.DateTime> AddNanoseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3645         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
AddNanoseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3646         public static System.Nullable<System.TimeSpan> AddNanoseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3647         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
AddSeconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3648         public static System.Nullable<System.DateTimeOffset> AddSeconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3649         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
AddSeconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3650         public static System.Nullable<System.DateTime> AddSeconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3651         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
AddSeconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3652         public static System.Nullable<System.TimeSpan> AddSeconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3653         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddYears")]
AddYears(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue)3654         public static System.Nullable<System.DateTimeOffset> AddYears(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
3655         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddYears")]
AddYears(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue)3656         public static System.Nullable<System.DateTime> AddYears(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
AsNonUnicode(string value)3657         public static string AsNonUnicode(string value) { throw null; }
AsUnicode(string value)3658         public static string AsUnicode(string value) { throw null; }
3659         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "CreateDateTime")]
CreateDateTime(System.Nullable<int> year, System.Nullable<int> month, System.Nullable<int> day, System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second)3660         public static System.Nullable<System.DateTime> CreateDateTime(System.Nullable<int> year, System.Nullable<int> month, System.Nullable<int> day, System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second) { throw null; }
3661         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "CreateDateTimeOffset")]
CreateDateTimeOffset(System.Nullable<int> year, System.Nullable<int> month, System.Nullable<int> day, System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second, System.Nullable<int> timeZoneOffset)3662         public static System.Nullable<System.DateTimeOffset> CreateDateTimeOffset(System.Nullable<int> year, System.Nullable<int> month, System.Nullable<int> day, System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second, System.Nullable<int> timeZoneOffset) { throw null; }
3663         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "CreateTime")]
CreateTime(System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second)3664         public static System.Nullable<System.TimeSpan> CreateTime(System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second) { throw null; }
3665         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffDays")]
DiffDays(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2)3666         public static System.Nullable<int> DiffDays(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
3667         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffDays")]
DiffDays(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2)3668         public static System.Nullable<int> DiffDays(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
3669         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
DiffHours(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3670         public static System.Nullable<int> DiffHours(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3671         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
DiffHours(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3672         public static System.Nullable<int> DiffHours(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3673         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
DiffHours(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3674         public static System.Nullable<int> DiffHours(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3675         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
DiffMicroseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3676         public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3677         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
DiffMicroseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3678         public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3679         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
DiffMicroseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3680         public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3681         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
DiffMilliseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3682         public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3683         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
DiffMilliseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3684         public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3685         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
DiffMilliseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3686         public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3687         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
DiffMinutes(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3688         public static System.Nullable<int> DiffMinutes(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3689         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
DiffMinutes(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3690         public static System.Nullable<int> DiffMinutes(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3691         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
DiffMinutes(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3692         public static System.Nullable<int> DiffMinutes(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3693         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMonths")]
DiffMonths(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2)3694         public static System.Nullable<int> DiffMonths(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
3695         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMonths")]
DiffMonths(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2)3696         public static System.Nullable<int> DiffMonths(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
3697         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
DiffNanoseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3698         public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3699         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
DiffNanoseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3700         public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3701         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
DiffNanoseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3702         public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3703         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
DiffSeconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3704         public static System.Nullable<int> DiffSeconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3705         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
DiffSeconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3706         public static System.Nullable<int> DiffSeconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3707         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
DiffSeconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3708         public static System.Nullable<int> DiffSeconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3709         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffYears")]
DiffYears(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2)3710         public static System.Nullable<int> DiffYears(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
3711         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffYears")]
DiffYears(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2)3712         public static System.Nullable<int> DiffYears(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
3713         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "GetTotalOffsetMinutes")]
GetTotalOffsetMinutes(System.Nullable<System.DateTimeOffset> dateTimeOffsetArgument)3714         public static System.Nullable<int> GetTotalOffsetMinutes(System.Nullable<System.DateTimeOffset> dateTimeOffsetArgument) { throw null; }
3715         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Left")]
Left(string stringArgument, System.Nullable<long> length)3716         public static string Left(string stringArgument, System.Nullable<long> length) { throw null; }
3717         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Reverse")]
Reverse(string stringArgument)3718         public static string Reverse(string stringArgument) { throw null; }
3719         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Right")]
Right(string stringArgument, System.Nullable<long> length)3720         public static string Right(string stringArgument, System.Nullable<long> length) { throw null; }
3721         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<decimal> collection)3722         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3723         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<double> collection)3724         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3725         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<int> collection)3726         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3727         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<long> collection)3728         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3729         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3730         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3731         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3732         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3733         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3734         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3735         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3736         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3737         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<decimal> collection)3738         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3739         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<double> collection)3740         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3741         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<int> collection)3742         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3743         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<long> collection)3744         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3745         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3746         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3747         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3748         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3749         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3750         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3751         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3752         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3753         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Truncate")]
Truncate(System.Nullable<decimal> value, System.Nullable<int> digits)3754         public static System.Nullable<decimal> Truncate(System.Nullable<decimal> value, System.Nullable<int> digits) { throw null; }
3755         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Truncate")]
Truncate(System.Nullable<double> value, System.Nullable<int> digits)3756         public static System.Nullable<double> Truncate(System.Nullable<double> value, System.Nullable<int> digits) { throw null; }
3757         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "TruncateTime")]
TruncateTime(System.Nullable<System.DateTimeOffset> dateValue)3758         public static System.Nullable<System.DateTimeOffset> TruncateTime(System.Nullable<System.DateTimeOffset> dateValue) { throw null; }
3759         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "TruncateTime")]
TruncateTime(System.Nullable<System.DateTime> dateValue)3760         public static System.Nullable<System.DateTime> TruncateTime(System.Nullable<System.DateTime> dateValue) { throw null; }
3761         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<decimal> collection)3762         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3763         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<double> collection)3764         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3765         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<int> collection)3766         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3767         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<long> collection)3768         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3769         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3770         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3771         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3772         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3773         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3774         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3775         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3776         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3777         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<decimal> collection)3778         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3779         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<double> collection)3780         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3781         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<int> collection)3782         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3783         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<long> collection)3784         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3785         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3786         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3787         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3788         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3789         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3790         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3791         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3792         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3793     }
3794     public partial interface IObjectSet<TEntity> : System.Collections.Generic.IEnumerable<TEntity>, System.Collections.IEnumerable, System.Linq.IQueryable, System.Linq.IQueryable<TEntity> where TEntity : class
3795     {
AddObject(TEntity entity)3796         void AddObject(TEntity entity);
Attach(TEntity entity)3797         void Attach(TEntity entity);
DeleteObject(TEntity entity)3798         void DeleteObject(TEntity entity);
Detach(TEntity entity)3799         void Detach(TEntity entity);
3800     }
3801     public enum MergeOption
3802     {
3803         AppendOnly = 0,
3804         NoTracking = 3,
3805         OverwriteChanges = 1,
3806         PreserveChanges = 2,
3807     }
3808     public partial class ObjectContext : System.IDisposable
3809     {
ObjectContext(System.Data.EntityClient.EntityConnection connection)3810         public ObjectContext(System.Data.EntityClient.EntityConnection connection) { }
ObjectContext(System.Data.EntityClient.EntityConnection connection, string defaultContainerName)3811         protected ObjectContext(System.Data.EntityClient.EntityConnection connection, string defaultContainerName) { }
ObjectContext(string connectionString)3812         public ObjectContext(string connectionString) { }
ObjectContext(string connectionString, string defaultContainerName)3813         protected ObjectContext(string connectionString, string defaultContainerName) { }
3814         public System.Nullable<int> CommandTimeout { get { throw null; } set { } }
3815         public System.Data.Common.DbConnection Connection { get { throw null; } }
3816         public System.Data.Objects.ObjectContextOptions ContextOptions { get { throw null; } }
3817         public string DefaultContainerName { get { throw null; } set { } }
3818         [System.CLSCompliantAttribute(false)]
3819         public System.Data.Metadata.Edm.MetadataWorkspace MetadataWorkspace { get { throw null; } }
3820         public System.Data.Objects.ObjectStateManager ObjectStateManager { get { throw null; } }
3821         protected internal System.Linq.IQueryProvider QueryProvider { get { throw null; } }
3822         public event System.Data.Objects.ObjectMaterializedEventHandler ObjectMaterialized { add { } remove { } }
3823         public event System.EventHandler SavingChanges { add { } remove { } }
AcceptAllChanges()3824         public void AcceptAllChanges() { }
AddObject(string entitySetName, object entity)3825         public void AddObject(string entitySetName, object entity) { }
3826         public TEntity ApplyCurrentValues<TEntity>(string entitySetName, TEntity currentEntity) where TEntity : class { throw null; }
3827         public TEntity ApplyOriginalValues<TEntity>(string entitySetName, TEntity originalEntity) where TEntity : class { throw null; }
3828         [System.ComponentModel.BrowsableAttribute(false)]
3829         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3830         [System.ObsoleteAttribute("Use ApplyCurrentValues instead")]
ApplyPropertyChanges(string entitySetName, object changed)3831         public void ApplyPropertyChanges(string entitySetName, object changed) { }
Attach(System.Data.Objects.DataClasses.IEntityWithKey entity)3832         public void Attach(System.Data.Objects.DataClasses.IEntityWithKey entity) { }
AttachTo(string entitySetName, object entity)3833         public void AttachTo(string entitySetName, object entity) { }
CreateDatabase()3834         public void CreateDatabase() { }
CreateDatabaseScript()3835         public string CreateDatabaseScript() { throw null; }
CreateEntityKey(string entitySetName, object entity)3836         public System.Data.EntityKey CreateEntityKey(string entitySetName, object entity) { throw null; }
3837         public System.Data.Objects.ObjectSet<TEntity> CreateObjectSet<TEntity>() where TEntity : class { throw null; }
3838         public System.Data.Objects.ObjectSet<TEntity> CreateObjectSet<TEntity>(string entitySetName) where TEntity : class { throw null; }
3839         public T CreateObject<T>() where T : class { throw null; }
CreateProxyTypes(System.Collections.Generic.IEnumerable<System.Type> types)3840         public void CreateProxyTypes(System.Collections.Generic.IEnumerable<System.Type> types) { }
CreateQuery(string queryString, params System.Data.Objects.ObjectParameter[] parameters)3841         public System.Data.Objects.ObjectQuery<T> CreateQuery<T>(string queryString, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
DatabaseExists()3842         public bool DatabaseExists() { throw null; }
DeleteDatabase()3843         public void DeleteDatabase() { }
DeleteObject(object entity)3844         public void DeleteObject(object entity) { }
Detach(object entity)3845         public void Detach(object entity) { }
DetectChanges()3846         public void DetectChanges() { }
Dispose()3847         public void Dispose() { }
Dispose(bool disposing)3848         protected virtual void Dispose(bool disposing) { }
ExecuteFunction(string functionName, params System.Data.Objects.ObjectParameter[] parameters)3849         public int ExecuteFunction(string functionName, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
ExecuteFunction(string functionName, System.Data.Objects.MergeOption mergeOption, params System.Data.Objects.ObjectParameter[] parameters)3850         public System.Data.Objects.ObjectResult<TElement> ExecuteFunction<TElement>(string functionName, System.Data.Objects.MergeOption mergeOption, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
ExecuteFunction(string functionName, params System.Data.Objects.ObjectParameter[] parameters)3851         public System.Data.Objects.ObjectResult<TElement> ExecuteFunction<TElement>(string functionName, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
ExecuteStoreCommand(string commandText, params object[] parameters)3852         public int ExecuteStoreCommand(string commandText, params object[] parameters) { throw null; }
ExecuteStoreQuery(string commandText, params object[] parameters)3853         public System.Data.Objects.ObjectResult<TElement> ExecuteStoreQuery<TElement>(string commandText, params object[] parameters) { throw null; }
ExecuteStoreQuery(string commandText, string entitySetName, System.Data.Objects.MergeOption mergeOption, params object[] parameters)3854         public System.Data.Objects.ObjectResult<TEntity> ExecuteStoreQuery<TEntity>(string commandText, string entitySetName, System.Data.Objects.MergeOption mergeOption, params object[] parameters) { throw null; }
GetKnownProxyTypes()3855         public static System.Collections.Generic.IEnumerable<System.Type> GetKnownProxyTypes() { throw null; }
GetObjectByKey(System.Data.EntityKey key)3856         public object GetObjectByKey(System.Data.EntityKey key) { throw null; }
GetObjectType(System.Type type)3857         public static System.Type GetObjectType(System.Type type) { throw null; }
LoadProperty(object entity, string navigationProperty)3858         public void LoadProperty(object entity, string navigationProperty) { }
LoadProperty(object entity, string navigationProperty, System.Data.Objects.MergeOption mergeOption)3859         public void LoadProperty(object entity, string navigationProperty, System.Data.Objects.MergeOption mergeOption) { }
LoadProperty(TEntity entity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> selector)3860         public void LoadProperty<TEntity>(TEntity entity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> selector) { }
LoadProperty(TEntity entity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> selector, System.Data.Objects.MergeOption mergeOption)3861         public void LoadProperty<TEntity>(TEntity entity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> selector, System.Data.Objects.MergeOption mergeOption) { }
Refresh(System.Data.Objects.RefreshMode refreshMode, System.Collections.IEnumerable collection)3862         public void Refresh(System.Data.Objects.RefreshMode refreshMode, System.Collections.IEnumerable collection) { }
Refresh(System.Data.Objects.RefreshMode refreshMode, object entity)3863         public void Refresh(System.Data.Objects.RefreshMode refreshMode, object entity) { }
SaveChanges()3864         public int SaveChanges() { throw null; }
3865         [System.ComponentModel.BrowsableAttribute(false)]
3866         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3867         [System.ObsoleteAttribute("Use SaveChanges(SaveOptions options) instead.")]
SaveChanges(bool acceptChangesDuringSave)3868         public int SaveChanges(bool acceptChangesDuringSave) { throw null; }
SaveChanges(System.Data.Objects.SaveOptions options)3869         public virtual int SaveChanges(System.Data.Objects.SaveOptions options) { throw null; }
Translate(System.Data.Common.DbDataReader reader)3870         public System.Data.Objects.ObjectResult<TElement> Translate<TElement>(System.Data.Common.DbDataReader reader) { throw null; }
Translate(System.Data.Common.DbDataReader reader, string entitySetName, System.Data.Objects.MergeOption mergeOption)3871         public System.Data.Objects.ObjectResult<TEntity> Translate<TEntity>(System.Data.Common.DbDataReader reader, string entitySetName, System.Data.Objects.MergeOption mergeOption) { throw null; }
TryGetObjectByKey(System.Data.EntityKey key, out object value)3872         public bool TryGetObjectByKey(System.Data.EntityKey key, out object value) { value = default(object); throw null; }
3873     }
3874     public sealed partial class ObjectContextOptions
3875     {
ObjectContextOptions()3876         internal ObjectContextOptions() { }
3877         public bool LazyLoadingEnabled { get { throw null; } set { } }
3878         public bool ProxyCreationEnabled { get { throw null; } set { } }
3879         public bool UseConsistentNullReferenceBehavior { get { throw null; } set { } }
3880         public bool UseCSharpNullComparisonBehavior { get { throw null; } set { } }
3881         public bool UseLegacyPreserveChangesBehavior { get { throw null; } set { } }
3882     }
3883     public partial class ObjectMaterializedEventArgs : System.EventArgs
3884     {
ObjectMaterializedEventArgs()3885         internal ObjectMaterializedEventArgs() { }
3886         public object Entity { get { throw null; } }
3887     }
ObjectMaterializedEventHandler(object sender, System.Data.Objects.ObjectMaterializedEventArgs e)3888     public delegate void ObjectMaterializedEventHandler(object sender, System.Data.Objects.ObjectMaterializedEventArgs e);
3889     public sealed partial class ObjectParameter
3890     {
ObjectParameter(string name, object value)3891         public ObjectParameter(string name, object value) { }
ObjectParameter(string name, System.Type type)3892         public ObjectParameter(string name, System.Type type) { }
3893         public string Name { get { throw null; } }
3894         public System.Type ParameterType { get { throw null; } }
3895         public object Value { get { throw null; } set { } }
3896     }
3897     public sealed partial class ObjectParameterCollection : System.Collections.Generic.ICollection<System.Data.Objects.ObjectParameter>, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectParameter>, System.Collections.IEnumerable
3898     {
ObjectParameterCollection()3899         internal ObjectParameterCollection() { }
3900         public int Count { get { throw null; } }
3901         public System.Data.Objects.ObjectParameter this[string name] { get { throw null; } }
3902         bool System.Collections.Generic.ICollection<System.Data.Objects.ObjectParameter>.IsReadOnly { get { throw null; } }
Add(System.Data.Objects.ObjectParameter parameter)3903         public void Add(System.Data.Objects.ObjectParameter parameter) { }
Clear()3904         public void Clear() { }
Contains(System.Data.Objects.ObjectParameter parameter)3905         public bool Contains(System.Data.Objects.ObjectParameter parameter) { throw null; }
Contains(string name)3906         public bool Contains(string name) { throw null; }
CopyTo(System.Data.Objects.ObjectParameter[] array, int index)3907         public void CopyTo(System.Data.Objects.ObjectParameter[] array, int index) { }
Remove(System.Data.Objects.ObjectParameter parameter)3908         public bool Remove(System.Data.Objects.ObjectParameter parameter) { throw null; }
GetEnumerator()3909         System.Collections.Generic.IEnumerator<System.Data.Objects.ObjectParameter> System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectParameter>.GetEnumerator() { throw null; }
System.Collections.IEnumerable.GetEnumerator()3910         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
3911     }
3912     public abstract partial class ObjectQuery : System.Collections.IEnumerable, System.ComponentModel.IListSource, System.Linq.IOrderedQueryable, System.Linq.IQueryable
3913     {
ObjectQuery()3914         internal ObjectQuery() { }
3915         public string CommandText { get { throw null; } }
3916         public System.Data.Objects.ObjectContext Context { get { throw null; } }
3917         public bool EnablePlanCaching { get { throw null; } set { } }
3918         public System.Data.Objects.MergeOption MergeOption { get { throw null; } set { } }
3919         public System.Data.Objects.ObjectParameterCollection Parameters { get { throw null; } }
3920         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
3921         System.Type System.Linq.IQueryable.ElementType { get { throw null; } }
3922         System.Linq.Expressions.Expression System.Linq.IQueryable.Expression { get { throw null; } }
3923         System.Linq.IQueryProvider System.Linq.IQueryable.Provider { get { throw null; } }
Execute(System.Data.Objects.MergeOption mergeOption)3924         public System.Data.Objects.ObjectResult Execute(System.Data.Objects.MergeOption mergeOption) { throw null; }
GetResultType()3925         public System.Data.Metadata.Edm.TypeUsage GetResultType() { throw null; }
System.Collections.IEnumerable.GetEnumerator()3926         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.IListSource.GetList()3927         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
3928         [System.ComponentModel.BrowsableAttribute(false)]
ToTraceString()3929         public string ToTraceString() { throw null; }
3930     }
3931     public partial class ObjectQuery<T> : System.Data.Objects.ObjectQuery, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable, System.ComponentModel.IListSource, System.Linq.IOrderedQueryable, System.Linq.IOrderedQueryable<T>, System.Linq.IQueryable, System.Linq.IQueryable<T>
3932     {
ObjectQuery(string commandText, System.Data.Objects.ObjectContext context)3933         public ObjectQuery(string commandText, System.Data.Objects.ObjectContext context) { }
ObjectQuery(string commandText, System.Data.Objects.ObjectContext context, System.Data.Objects.MergeOption mergeOption)3934         public ObjectQuery(string commandText, System.Data.Objects.ObjectContext context, System.Data.Objects.MergeOption mergeOption) { }
3935         public string Name { get { throw null; } set { } }
Distinct()3936         public System.Data.Objects.ObjectQuery<T> Distinct() { throw null; }
Except(System.Data.Objects.ObjectQuery<T> query)3937         public System.Data.Objects.ObjectQuery<T> Except(System.Data.Objects.ObjectQuery<T> query) { throw null; }
Execute(System.Data.Objects.MergeOption mergeOption)3938         public new System.Data.Objects.ObjectResult<T> Execute(System.Data.Objects.MergeOption mergeOption) { throw null; }
GroupBy(string keys, string projection, params System.Data.Objects.ObjectParameter[] parameters)3939         public System.Data.Objects.ObjectQuery<System.Data.Common.DbDataRecord> GroupBy(string keys, string projection, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
Include(string path)3940         public System.Data.Objects.ObjectQuery<T> Include(string path) { throw null; }
Intersect(System.Data.Objects.ObjectQuery<T> query)3941         public System.Data.Objects.ObjectQuery<T> Intersect(System.Data.Objects.ObjectQuery<T> query) { throw null; }
OfType()3942         public System.Data.Objects.ObjectQuery<TResultType> OfType<TResultType>() { throw null; }
OrderBy(string keys, params System.Data.Objects.ObjectParameter[] parameters)3943         public System.Data.Objects.ObjectQuery<T> OrderBy(string keys, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
Select(string projection, params System.Data.Objects.ObjectParameter[] parameters)3944         public System.Data.Objects.ObjectQuery<System.Data.Common.DbDataRecord> Select(string projection, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
SelectValue(string projection, params System.Data.Objects.ObjectParameter[] parameters)3945         public System.Data.Objects.ObjectQuery<TResultType> SelectValue<TResultType>(string projection, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
Skip(string keys, string count, params System.Data.Objects.ObjectParameter[] parameters)3946         public System.Data.Objects.ObjectQuery<T> Skip(string keys, string count, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
GetEnumerator()3947         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
Top(string count, params System.Data.Objects.ObjectParameter[] parameters)3948         public System.Data.Objects.ObjectQuery<T> Top(string count, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
Union(System.Data.Objects.ObjectQuery<T> query)3949         public System.Data.Objects.ObjectQuery<T> Union(System.Data.Objects.ObjectQuery<T> query) { throw null; }
UnionAll(System.Data.Objects.ObjectQuery<T> query)3950         public System.Data.Objects.ObjectQuery<T> UnionAll(System.Data.Objects.ObjectQuery<T> query) { throw null; }
Where(string predicate, params System.Data.Objects.ObjectParameter[] parameters)3951         public System.Data.Objects.ObjectQuery<T> Where(string predicate, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
3952     }
3953     public abstract partial class ObjectResult : System.Collections.IEnumerable, System.ComponentModel.IListSource, System.IDisposable
3954     {
ObjectResult()3955         internal ObjectResult() { }
3956         public abstract System.Type ElementType { get; }
3957         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
Dispose()3958         public abstract void Dispose();
GetNextResult()3959         public System.Data.Objects.ObjectResult<TElement> GetNextResult<TElement>() { throw null; }
System.Collections.IEnumerable.GetEnumerator()3960         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.IListSource.GetList()3961         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
3962     }
3963     public sealed partial class ObjectResult<T> : System.Data.Objects.ObjectResult, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
3964     {
ObjectResult()3965         internal ObjectResult() { }
3966         public override System.Type ElementType { get { throw null; } }
Dispose()3967         public override void Dispose() { }
GetEnumerator()3968         public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
3969     }
3970     public partial class ObjectSet<TEntity> : System.Data.Objects.ObjectQuery<TEntity>, System.Collections.Generic.IEnumerable<TEntity>, System.Collections.IEnumerable, System.Data.Objects.IObjectSet<TEntity>, System.Linq.IQueryable, System.Linq.IQueryable<TEntity> where TEntity : class
3971     {
ObjectSet()3972         internal ObjectSet() : base (default(string), default(System.Data.Objects.ObjectContext)) { }
3973         public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
AddObject(TEntity entity)3974         public void AddObject(TEntity entity) { }
ApplyCurrentValues(TEntity currentEntity)3975         public TEntity ApplyCurrentValues(TEntity currentEntity) { throw null; }
ApplyOriginalValues(TEntity originalEntity)3976         public TEntity ApplyOriginalValues(TEntity originalEntity) { throw null; }
Attach(TEntity entity)3977         public void Attach(TEntity entity) { }
CreateObject()3978         public TEntity CreateObject() { throw null; }
3979         public T CreateObject<T>() where T : class, TEntity { throw null; }
DeleteObject(TEntity entity)3980         public void DeleteObject(TEntity entity) { }
Detach(TEntity entity)3981         public void Detach(TEntity entity) { }
3982     }
3983     public abstract partial class ObjectStateEntry : System.Data.Objects.DataClasses.IEntityChangeTracker
3984     {
ObjectStateEntry()3985         internal ObjectStateEntry() { }
3986         [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))]
3987         public abstract System.Data.Objects.CurrentValueRecord CurrentValues { get; }
3988         public abstract object Entity { get; }
3989         public abstract System.Data.EntityKey EntityKey { get; }
3990         public System.Data.Metadata.Edm.EntitySetBase EntitySet { get { throw null; } }
3991         public abstract bool IsRelationship { get; }
3992         public System.Data.Objects.ObjectStateManager ObjectStateManager { get { throw null; } }
3993         [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))]
3994         public abstract System.Data.Common.DbDataRecord OriginalValues { get; }
3995         public abstract System.Data.Objects.DataClasses.RelationshipManager RelationshipManager { get; }
3996         public System.Data.EntityState State { get { throw null; } }
3997         System.Data.EntityState System.Data.Objects.DataClasses.IEntityChangeTracker.EntityState { get { throw null; } }
AcceptChanges()3998         public abstract void AcceptChanges();
ApplyCurrentValues(object currentEntity)3999         public abstract void ApplyCurrentValues(object currentEntity);
ApplyOriginalValues(object originalEntity)4000         public abstract void ApplyOriginalValues(object originalEntity);
ChangeState(System.Data.EntityState state)4001         public abstract void ChangeState(System.Data.EntityState state);
Delete()4002         public abstract void Delete();
GetModifiedProperties()4003         public abstract System.Collections.Generic.IEnumerable<string> GetModifiedProperties();
GetUpdatableOriginalValues()4004         public abstract System.Data.Objects.OriginalValueRecord GetUpdatableOriginalValues();
IsPropertyChanged(string propertyName)4005         public abstract bool IsPropertyChanged(string propertyName);
RejectPropertyChanges(string propertyName)4006         public abstract void RejectPropertyChanges(string propertyName);
SetModified()4007         public abstract void SetModified();
SetModifiedProperty(string propertyName)4008         public abstract void SetModifiedProperty(string propertyName);
System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName)4009         void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName) { }
System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName)4010         void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName) { }
System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanged(string entityMemberName)4011         void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanged(string entityMemberName) { }
System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanging(string entityMemberName)4012         void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanging(string entityMemberName) { }
4013     }
4014     public partial class ObjectStateManager
4015     {
4016         [System.CLSCompliantAttribute(false)]
ObjectStateManager(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace)4017         public ObjectStateManager(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace) { }
4018         [System.CLSCompliantAttribute(false)]
4019         public System.Data.Metadata.Edm.MetadataWorkspace MetadataWorkspace { get { throw null; } }
4020         public event System.ComponentModel.CollectionChangeEventHandler ObjectStateManagerChanged { add { } remove { } }
ChangeObjectState(object entity, System.Data.EntityState entityState)4021         public System.Data.Objects.ObjectStateEntry ChangeObjectState(object entity, System.Data.EntityState entityState) { throw null; }
ChangeRelationshipState(object sourceEntity, object targetEntity, string navigationProperty, System.Data.EntityState relationshipState)4022         public System.Data.Objects.ObjectStateEntry ChangeRelationshipState(object sourceEntity, object targetEntity, string navigationProperty, System.Data.EntityState relationshipState) { throw null; }
ChangeRelationshipState(object sourceEntity, object targetEntity, string relationshipName, string targetRoleName, System.Data.EntityState relationshipState)4023         public System.Data.Objects.ObjectStateEntry ChangeRelationshipState(object sourceEntity, object targetEntity, string relationshipName, string targetRoleName, System.Data.EntityState relationshipState) { throw null; }
4024         public System.Data.Objects.ObjectStateEntry ChangeRelationshipState<TEntity>(TEntity sourceEntity, object targetEntity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> navigationPropertySelector, System.Data.EntityState relationshipState) where TEntity : class { throw null; }
GetObjectStateEntries(System.Data.EntityState state)4025         public System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> GetObjectStateEntries(System.Data.EntityState state) { throw null; }
GetObjectStateEntry(System.Data.EntityKey key)4026         public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(System.Data.EntityKey key) { throw null; }
GetObjectStateEntry(object entity)4027         public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(object entity) { throw null; }
GetRelationshipManager(object entity)4028         public System.Data.Objects.DataClasses.RelationshipManager GetRelationshipManager(object entity) { throw null; }
TryGetObjectStateEntry(System.Data.EntityKey key, out System.Data.Objects.ObjectStateEntry entry)4029         public bool TryGetObjectStateEntry(System.Data.EntityKey key, out System.Data.Objects.ObjectStateEntry entry) { entry = default(System.Data.Objects.ObjectStateEntry); throw null; }
TryGetObjectStateEntry(object entity, out System.Data.Objects.ObjectStateEntry entry)4030         public bool TryGetObjectStateEntry(object entity, out System.Data.Objects.ObjectStateEntry entry) { entry = default(System.Data.Objects.ObjectStateEntry); throw null; }
TryGetRelationshipManager(object entity, out System.Data.Objects.DataClasses.RelationshipManager relationshipManager)4031         public bool TryGetRelationshipManager(object entity, out System.Data.Objects.DataClasses.RelationshipManager relationshipManager) { relationshipManager = default(System.Data.Objects.DataClasses.RelationshipManager); throw null; }
4032     }
4033     public abstract partial class OriginalValueRecord : System.Data.Objects.DbUpdatableDataRecord
4034     {
OriginalValueRecord()4035         internal OriginalValueRecord() { }
4036     }
4037     public partial class ProxyDataContractResolver : System.Runtime.Serialization.DataContractResolver
4038     {
ProxyDataContractResolver()4039         public ProxyDataContractResolver() { }
ResolveName(string typeName, string typeNamespace, System.Type declaredType, System.Runtime.Serialization.DataContractResolver knownTypeResolver)4040         public override System.Type ResolveName(string typeName, string typeNamespace, System.Type declaredType, System.Runtime.Serialization.DataContractResolver knownTypeResolver) { throw null; }
TryResolveType(System.Type dataContractType, System.Type declaredType, System.Runtime.Serialization.DataContractResolver knownTypeResolver, out System.Xml.XmlDictionaryString typeName, out System.Xml.XmlDictionaryString typeNamespace)4041         public override bool TryResolveType(System.Type dataContractType, System.Type declaredType, System.Runtime.Serialization.DataContractResolver knownTypeResolver, out System.Xml.XmlDictionaryString typeName, out System.Xml.XmlDictionaryString typeNamespace) { typeName = default(System.Xml.XmlDictionaryString); typeNamespace = default(System.Xml.XmlDictionaryString); throw null; }
4042     }
4043     public enum RefreshMode
4044     {
4045         ClientWins = 2,
4046         StoreWins = 1,
4047     }
4048     [System.FlagsAttribute]
4049     public enum SaveOptions
4050     {
4051         AcceptAllChangesAfterSave = 1,
4052         DetectChangesBeforeSave = 2,
4053         None = 0,
4054     }
4055 }
4056 namespace System.Data.Objects.DataClasses
4057 {
4058     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
4059     [System.SerializableAttribute]
4060     public abstract partial class ComplexObject : System.Data.Objects.DataClasses.StructuralObject
4061     {
ComplexObject()4062         protected ComplexObject() { }
ReportPropertyChanged(string property)4063         protected sealed override void ReportPropertyChanged(string property) { }
ReportPropertyChanging(string property)4064         protected sealed override void ReportPropertyChanging(string property) { }
4065     }
4066     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4067     public sealed partial class EdmComplexPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
4068     {
EdmComplexPropertyAttribute()4069         public EdmComplexPropertyAttribute() { }
4070     }
4071     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
4072     public sealed partial class EdmComplexTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
4073     {
EdmComplexTypeAttribute()4074         public EdmComplexTypeAttribute() { }
4075     }
4076     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false)]
4077     public sealed partial class EdmEntityTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
4078     {
EdmEntityTypeAttribute()4079         public EdmEntityTypeAttribute() { }
4080     }
4081     [System.AttributeUsageAttribute((System.AttributeTargets)(16))]
4082     public sealed partial class EdmEnumTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
4083     {
EdmEnumTypeAttribute()4084         public EdmEnumTypeAttribute() { }
4085     }
4086     [System.AttributeUsageAttribute((System.AttributeTargets)(64), Inherited=false, AllowMultiple=false)]
4087     public sealed partial class EdmFunctionAttribute : System.Attribute
4088     {
EdmFunctionAttribute(string namespaceName, string functionName)4089         public EdmFunctionAttribute(string namespaceName, string functionName) { }
4090         public string FunctionName { get { throw null; } }
4091         public string NamespaceName { get { throw null; } }
4092     }
4093     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4094     public abstract partial class EdmPropertyAttribute : System.Attribute
4095     {
EdmPropertyAttribute()4096         internal EdmPropertyAttribute() { }
4097     }
4098     [System.AttributeUsageAttribute((System.AttributeTargets)(1), AllowMultiple=true)]
4099     public sealed partial class EdmRelationshipAttribute : System.Attribute
4100     {
EdmRelationshipAttribute(string relationshipNamespaceName, string relationshipName, string role1Name, System.Data.Metadata.Edm.RelationshipMultiplicity role1Multiplicity, System.Type role1Type, string role2Name, System.Data.Metadata.Edm.RelationshipMultiplicity role2Multiplicity, System.Type role2Type)4101         public EdmRelationshipAttribute(string relationshipNamespaceName, string relationshipName, string role1Name, System.Data.Metadata.Edm.RelationshipMultiplicity role1Multiplicity, System.Type role1Type, string role2Name, System.Data.Metadata.Edm.RelationshipMultiplicity role2Multiplicity, System.Type role2Type) { }
EdmRelationshipAttribute(string relationshipNamespaceName, string relationshipName, string role1Name, System.Data.Metadata.Edm.RelationshipMultiplicity role1Multiplicity, System.Type role1Type, string role2Name, System.Data.Metadata.Edm.RelationshipMultiplicity role2Multiplicity, System.Type role2Type, bool isForeignKey)4102         public EdmRelationshipAttribute(string relationshipNamespaceName, string relationshipName, string role1Name, System.Data.Metadata.Edm.RelationshipMultiplicity role1Multiplicity, System.Type role1Type, string role2Name, System.Data.Metadata.Edm.RelationshipMultiplicity role2Multiplicity, System.Type role2Type, bool isForeignKey) { }
4103         public bool IsForeignKey { get { throw null; } }
4104         public string RelationshipName { get { throw null; } }
4105         public string RelationshipNamespaceName { get { throw null; } }
4106         public System.Data.Metadata.Edm.RelationshipMultiplicity Role1Multiplicity { get { throw null; } }
4107         public string Role1Name { get { throw null; } }
4108         public System.Type Role1Type { get { throw null; } }
4109         public System.Data.Metadata.Edm.RelationshipMultiplicity Role2Multiplicity { get { throw null; } }
4110         public string Role2Name { get { throw null; } }
4111         public System.Type Role2Type { get { throw null; } }
4112     }
4113     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4114     public sealed partial class EdmRelationshipNavigationPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
4115     {
EdmRelationshipNavigationPropertyAttribute(string relationshipNamespaceName, string relationshipName, string targetRoleName)4116         public EdmRelationshipNavigationPropertyAttribute(string relationshipNamespaceName, string relationshipName, string targetRoleName) { }
4117         public string RelationshipName { get { throw null; } }
4118         public string RelationshipNamespaceName { get { throw null; } }
4119         public string TargetRoleName { get { throw null; } }
4120     }
4121     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4122     public sealed partial class EdmScalarPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
4123     {
EdmScalarPropertyAttribute()4124         public EdmScalarPropertyAttribute() { }
4125         public bool EntityKeyProperty { get { throw null; } set { } }
4126         public bool IsNullable { get { throw null; } set { } }
4127     }
4128     [System.AttributeUsageAttribute((System.AttributeTargets)(5), AllowMultiple=true)]
4129     public sealed partial class EdmSchemaAttribute : System.Attribute
4130     {
EdmSchemaAttribute()4131         public EdmSchemaAttribute() { }
EdmSchemaAttribute(string assemblyGuid)4132         public EdmSchemaAttribute(string assemblyGuid) { }
4133     }
4134     public abstract partial class EdmTypeAttribute : System.Attribute
4135     {
EdmTypeAttribute()4136         internal EdmTypeAttribute() { }
4137         public string Name { get { throw null; } set { } }
4138         public string NamespaceName { get { throw null; } set { } }
4139     }
4140     [System.SerializableAttribute]
4141     public sealed partial class EntityCollection<TEntity> : System.Data.Objects.DataClasses.RelatedEnd, System.Collections.Generic.ICollection<TEntity>, System.Collections.Generic.IEnumerable<TEntity>, System.Collections.IEnumerable, System.ComponentModel.IListSource where TEntity : class
4142     {
EntityCollection()4143         public EntityCollection() { }
4144         public int Count { get { throw null; } }
4145         public bool IsReadOnly { get { throw null; } }
4146         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
Add(TEntity entity)4147         public void Add(TEntity entity) { }
Attach(System.Collections.Generic.IEnumerable<TEntity> entities)4148         public void Attach(System.Collections.Generic.IEnumerable<TEntity> entities) { }
Attach(TEntity entity)4149         public void Attach(TEntity entity) { }
Clear()4150         public void Clear() { }
Contains(TEntity entity)4151         public bool Contains(TEntity entity) { throw null; }
CopyTo(TEntity[] array, int arrayIndex)4152         public void CopyTo(TEntity[] array, int arrayIndex) { }
CreateSourceQuery()4153         public System.Data.Objects.ObjectQuery<TEntity> CreateSourceQuery() { throw null; }
GetEnumerator()4154         public new System.Collections.Generic.IEnumerator<TEntity> GetEnumerator() { throw null; }
Load(System.Data.Objects.MergeOption mergeOption)4155         public override void Load(System.Data.Objects.MergeOption mergeOption) { }
4156         [System.ComponentModel.BrowsableAttribute(false)]
4157         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4158         [System.Runtime.Serialization.OnDeserializedAttribute]
OnCollectionDeserialized(System.Runtime.Serialization.StreamingContext context)4159         public void OnCollectionDeserialized(System.Runtime.Serialization.StreamingContext context) { }
4160         [System.ComponentModel.BrowsableAttribute(false)]
4161         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4162         [System.Runtime.Serialization.OnSerializingAttribute]
OnSerializing(System.Runtime.Serialization.StreamingContext context)4163         public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
Remove(TEntity entity)4164         public bool Remove(TEntity entity) { throw null; }
System.Collections.IEnumerable.GetEnumerator()4165         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.IListSource.GetList()4166         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
4167     }
4168     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
4169     [System.SerializableAttribute]
4170     public abstract partial class EntityObject : System.Data.Objects.DataClasses.StructuralObject, System.Data.Objects.DataClasses.IEntityWithChangeTracker, System.Data.Objects.DataClasses.IEntityWithKey, System.Data.Objects.DataClasses.IEntityWithRelationships
4171     {
EntityObject()4172         protected EntityObject() { }
4173         [System.ComponentModel.BrowsableAttribute(false)]
4174         [System.Runtime.Serialization.DataMemberAttribute]
4175         public System.Data.EntityKey EntityKey { get { throw null; } set { } }
4176         [System.ComponentModel.BrowsableAttribute(false)]
4177         [System.Xml.Serialization.XmlIgnoreAttribute]
4178         public System.Data.EntityState EntityState { get { throw null; } }
4179         System.Data.Objects.DataClasses.RelationshipManager System.Data.Objects.DataClasses.IEntityWithRelationships.RelationshipManager { get { throw null; } }
ReportPropertyChanged(string property)4180         protected sealed override void ReportPropertyChanged(string property) { }
ReportPropertyChanging(string property)4181         protected sealed override void ReportPropertyChanging(string property) { }
System.Data.Objects.DataClasses.IEntityWithChangeTracker.SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker)4182         void System.Data.Objects.DataClasses.IEntityWithChangeTracker.SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker) { }
4183     }
4184     [System.Runtime.Serialization.DataContractAttribute]
4185     [System.SerializableAttribute]
4186     public abstract partial class EntityReference : System.Data.Objects.DataClasses.RelatedEnd
4187     {
EntityReference()4188         internal EntityReference() { }
4189         [System.Runtime.Serialization.DataMemberAttribute]
4190         public System.Data.EntityKey EntityKey { get { throw null; } set { } }
4191     }
4192     [System.Runtime.Serialization.DataContractAttribute]
4193     [System.SerializableAttribute]
4194     public sealed partial class EntityReference<TEntity> : System.Data.Objects.DataClasses.EntityReference where TEntity : class
4195     {
EntityReference()4196         public EntityReference() { }
4197         [System.Xml.Serialization.SoapIgnoreAttribute]
4198         [System.Xml.Serialization.XmlIgnoreAttribute]
4199         public TEntity Value { get { throw null; } set { } }
Attach(TEntity entity)4200         public void Attach(TEntity entity) { }
CreateSourceQuery()4201         public System.Data.Objects.ObjectQuery<TEntity> CreateSourceQuery() { throw null; }
Load(System.Data.Objects.MergeOption mergeOption)4202         public override void Load(System.Data.Objects.MergeOption mergeOption) { }
4203         [System.ComponentModel.BrowsableAttribute(false)]
4204         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4205         [System.Runtime.Serialization.OnDeserializedAttribute]
OnRefDeserialized(System.Runtime.Serialization.StreamingContext context)4206         public void OnRefDeserialized(System.Runtime.Serialization.StreamingContext context) { }
4207         [System.ComponentModel.BrowsableAttribute(false)]
4208         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4209         [System.Runtime.Serialization.OnSerializingAttribute]
OnSerializing(System.Runtime.Serialization.StreamingContext context)4210         public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
4211     }
4212     public partial interface IEntityChangeTracker
4213     {
4214         System.Data.EntityState EntityState { get; }
EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName)4215         void EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName);
EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName)4216         void EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName);
EntityMemberChanged(string entityMemberName)4217         void EntityMemberChanged(string entityMemberName);
EntityMemberChanging(string entityMemberName)4218         void EntityMemberChanging(string entityMemberName);
4219     }
4220     public partial interface IEntityWithChangeTracker
4221     {
SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker)4222         void SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker);
4223     }
4224     public partial interface IEntityWithKey
4225     {
4226         System.Data.EntityKey EntityKey { get; set; }
4227     }
4228     public partial interface IEntityWithRelationships
4229     {
4230         System.Data.Objects.DataClasses.RelationshipManager RelationshipManager { get; }
4231     }
4232     public partial interface IRelatedEnd
4233     {
4234         bool IsLoaded { get; }
4235         string RelationshipName { get; }
4236         System.Data.Metadata.Edm.RelationshipSet RelationshipSet { get; }
4237         string SourceRoleName { get; }
4238         string TargetRoleName { get; }
Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4239         void Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
Add(object entity)4240         void Add(object entity);
Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4241         void Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
Attach(object entity)4242         void Attach(object entity);
CreateSourceQuery()4243         System.Collections.IEnumerable CreateSourceQuery();
GetEnumerator()4244         System.Collections.IEnumerator GetEnumerator();
Load()4245         void Load();
Load(System.Data.Objects.MergeOption mergeOption)4246         void Load(System.Data.Objects.MergeOption mergeOption);
Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4247         bool Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
Remove(object entity)4248         bool Remove(object entity);
4249     }
4250     [System.Runtime.Serialization.DataContractAttribute]
4251     [System.SerializableAttribute]
4252     public abstract partial class RelatedEnd : System.Data.Objects.DataClasses.IRelatedEnd
4253     {
RelatedEnd()4254         internal RelatedEnd() { }
4255         [System.Xml.Serialization.SoapIgnoreAttribute]
4256         [System.Xml.Serialization.XmlIgnoreAttribute]
4257         public bool IsLoaded { get { throw null; } }
4258         [System.Xml.Serialization.SoapIgnoreAttribute]
4259         [System.Xml.Serialization.XmlIgnoreAttribute]
4260         public string RelationshipName { get { throw null; } }
4261         [System.Xml.Serialization.SoapIgnoreAttribute]
4262         [System.Xml.Serialization.XmlIgnoreAttribute]
4263         public System.Data.Metadata.Edm.RelationshipSet RelationshipSet { get { throw null; } }
4264         [System.Xml.Serialization.SoapIgnoreAttribute]
4265         [System.Xml.Serialization.XmlIgnoreAttribute]
4266         public string SourceRoleName { get { throw null; } }
4267         [System.Xml.Serialization.SoapIgnoreAttribute]
4268         [System.Xml.Serialization.XmlIgnoreAttribute]
4269         public string TargetRoleName { get { throw null; } }
4270         public event System.ComponentModel.CollectionChangeEventHandler AssociationChanged { add { } remove { } }
GetEnumerator()4271         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Load()4272         public void Load() { }
Load(System.Data.Objects.MergeOption mergeOption)4273         public abstract void Load(System.Data.Objects.MergeOption mergeOption);
4274         [System.ComponentModel.BrowsableAttribute(false)]
4275         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4276         [System.Runtime.Serialization.OnDeserializedAttribute]
OnDeserialized(System.Runtime.Serialization.StreamingContext context)4277         public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
System.Data.Objects.DataClasses.IRelatedEnd.Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4278         void System.Data.Objects.DataClasses.IRelatedEnd.Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.Add(object entity)4279         void System.Data.Objects.DataClasses.IRelatedEnd.Add(object entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4280         void System.Data.Objects.DataClasses.IRelatedEnd.Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.Attach(object entity)4281         void System.Data.Objects.DataClasses.IRelatedEnd.Attach(object entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.CreateSourceQuery()4282         System.Collections.IEnumerable System.Data.Objects.DataClasses.IRelatedEnd.CreateSourceQuery() { throw null; }
System.Data.Objects.DataClasses.IRelatedEnd.Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4283         bool System.Data.Objects.DataClasses.IRelatedEnd.Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { throw null; }
System.Data.Objects.DataClasses.IRelatedEnd.Remove(object entity)4284         bool System.Data.Objects.DataClasses.IRelatedEnd.Remove(object entity) { throw null; }
4285     }
4286     public enum RelationshipKind
4287     {
4288         Association = 0,
4289     }
4290     [System.SerializableAttribute]
4291     public partial class RelationshipManager
4292     {
RelationshipManager()4293         internal RelationshipManager() { }
Create(System.Data.Objects.DataClasses.IEntityWithRelationships owner)4294         public static System.Data.Objects.DataClasses.RelationshipManager Create(System.Data.Objects.DataClasses.IEntityWithRelationships owner) { throw null; }
GetAllRelatedEnds()4295         public System.Collections.Generic.IEnumerable<System.Data.Objects.DataClasses.IRelatedEnd> GetAllRelatedEnds() { throw null; }
4296         public System.Data.Objects.DataClasses.EntityCollection<TTargetEntity> GetRelatedCollection<TTargetEntity>(string relationshipName, string targetRoleName) where TTargetEntity : class { throw null; }
GetRelatedEnd(string relationshipName, string targetRoleName)4297         public System.Data.Objects.DataClasses.IRelatedEnd GetRelatedEnd(string relationshipName, string targetRoleName) { throw null; }
4298         public System.Data.Objects.DataClasses.EntityReference<TTargetEntity> GetRelatedReference<TTargetEntity>(string relationshipName, string targetRoleName) where TTargetEntity : class { throw null; }
4299         [System.ComponentModel.BrowsableAttribute(false)]
4300         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4301         public void InitializeRelatedCollection<TTargetEntity>(string relationshipName, string targetRoleName, System.Data.Objects.DataClasses.EntityCollection<TTargetEntity> entityCollection) where TTargetEntity : class { }
4302         [System.ComponentModel.BrowsableAttribute(false)]
4303         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4304         public void InitializeRelatedReference<TTargetEntity>(string relationshipName, string targetRoleName, System.Data.Objects.DataClasses.EntityReference<TTargetEntity> entityReference) where TTargetEntity : class { }
4305         [System.ComponentModel.BrowsableAttribute(false)]
4306         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4307         [System.Runtime.Serialization.OnDeserializedAttribute]
OnDeserialized(System.Runtime.Serialization.StreamingContext context)4308         public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
4309         [System.ComponentModel.BrowsableAttribute(false)]
4310         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4311         [System.Runtime.Serialization.OnSerializingAttribute]
OnSerializing(System.Runtime.Serialization.StreamingContext context)4312         public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
4313     }
4314     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
4315     [System.SerializableAttribute]
4316     public abstract partial class StructuralObject : System.ComponentModel.INotifyPropertyChanged, System.ComponentModel.INotifyPropertyChanging
4317     {
4318         public static readonly string EntityKeyPropertyName;
StructuralObject()4319         protected StructuralObject() { }
4320         public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
4321         public event System.ComponentModel.PropertyChangingEventHandler PropertyChanging { add { } remove { } }
BinaryEquals(byte[] first, byte[] second)4322         protected internal static bool BinaryEquals(byte[] first, byte[] second) { throw null; }
DefaultDateTimeValue()4323         protected static System.DateTime DefaultDateTimeValue() { throw null; }
GetValidValue(byte[] currentValue)4324         protected internal static byte[] GetValidValue(byte[] currentValue) { throw null; }
4325         protected internal T GetValidValue<T>(T currentValue, string property, bool isNullable, bool isInitialized) where T : System.Data.Objects.DataClasses.ComplexObject, new() { throw null; }
OnPropertyChanged(string property)4326         protected virtual void OnPropertyChanged(string property) { }
OnPropertyChanging(string property)4327         protected virtual void OnPropertyChanging(string property) { }
ReportPropertyChanged(string property)4328         protected virtual void ReportPropertyChanged(string property) { }
ReportPropertyChanging(string property)4329         protected virtual void ReportPropertyChanging(string property) { }
SetValidValue(bool value)4330         protected internal static bool SetValidValue(bool value) { throw null; }
SetValidValue(bool value, string propertyName)4331         protected internal static bool SetValidValue(bool value, string propertyName) { throw null; }
SetValidValue(byte value)4332         protected internal static byte SetValidValue(byte value) { throw null; }
SetValidValue(byte value, string propertyName)4333         protected internal static byte SetValidValue(byte value, string propertyName) { throw null; }
SetValidValue(byte[] value, bool isNullable)4334         protected internal static byte[] SetValidValue(byte[] value, bool isNullable) { throw null; }
SetValidValue(byte[] value, bool isNullable, string propertyName)4335         protected internal static byte[] SetValidValue(byte[] value, bool isNullable, string propertyName) { throw null; }
SetValidValue(System.Data.Spatial.DbGeography value, bool isNullable)4336         protected internal static System.Data.Spatial.DbGeography SetValidValue(System.Data.Spatial.DbGeography value, bool isNullable) { throw null; }
SetValidValue(System.Data.Spatial.DbGeography value, bool isNullable, string propertyName)4337         protected internal static System.Data.Spatial.DbGeography SetValidValue(System.Data.Spatial.DbGeography value, bool isNullable, string propertyName) { throw null; }
SetValidValue(System.Data.Spatial.DbGeometry value, bool isNullable)4338         protected internal static System.Data.Spatial.DbGeometry SetValidValue(System.Data.Spatial.DbGeometry value, bool isNullable) { throw null; }
SetValidValue(System.Data.Spatial.DbGeometry value, bool isNullable, string propertyName)4339         protected internal static System.Data.Spatial.DbGeometry SetValidValue(System.Data.Spatial.DbGeometry value, bool isNullable, string propertyName) { throw null; }
SetValidValue(System.DateTime value)4340         protected internal static System.DateTime SetValidValue(System.DateTime value) { throw null; }
SetValidValue(System.DateTime value, string propertyName)4341         protected internal static System.DateTime SetValidValue(System.DateTime value, string propertyName) { throw null; }
SetValidValue(System.DateTimeOffset value)4342         protected internal static System.DateTimeOffset SetValidValue(System.DateTimeOffset value) { throw null; }
SetValidValue(System.DateTimeOffset value, string propertyName)4343         protected internal static System.DateTimeOffset SetValidValue(System.DateTimeOffset value, string propertyName) { throw null; }
SetValidValue(decimal value)4344         protected internal static decimal SetValidValue(decimal value) { throw null; }
SetValidValue(decimal value, string propertyName)4345         protected internal static decimal SetValidValue(decimal value, string propertyName) { throw null; }
SetValidValue(double value)4346         protected internal static double SetValidValue(double value) { throw null; }
SetValidValue(double value, string propertyName)4347         protected internal static double SetValidValue(double value, string propertyName) { throw null; }
SetValidValue(System.Guid value)4348         protected internal static System.Guid SetValidValue(System.Guid value) { throw null; }
SetValidValue(System.Guid value, string propertyName)4349         protected internal static System.Guid SetValidValue(System.Guid value, string propertyName) { throw null; }
SetValidValue(short value)4350         protected internal static short SetValidValue(short value) { throw null; }
SetValidValue(short value, string propertyName)4351         protected internal static short SetValidValue(short value, string propertyName) { throw null; }
SetValidValue(int value)4352         protected internal static int SetValidValue(int value) { throw null; }
SetValidValue(int value, string propertyName)4353         protected internal static int SetValidValue(int value, string propertyName) { throw null; }
SetValidValue(long value)4354         protected internal static long SetValidValue(long value) { throw null; }
SetValidValue(long value, string propertyName)4355         protected internal static long SetValidValue(long value, string propertyName) { throw null; }
SetValidValue(System.Nullable<bool> value)4356         protected internal static System.Nullable<bool> SetValidValue(System.Nullable<bool> value) { throw null; }
SetValidValue(System.Nullable<bool> value, string propertyName)4357         protected internal static System.Nullable<bool> SetValidValue(System.Nullable<bool> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<byte> value)4358         protected internal static System.Nullable<byte> SetValidValue(System.Nullable<byte> value) { throw null; }
SetValidValue(System.Nullable<byte> value, string propertyName)4359         protected internal static System.Nullable<byte> SetValidValue(System.Nullable<byte> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.DateTimeOffset> value)4360         protected internal static System.Nullable<System.DateTimeOffset> SetValidValue(System.Nullable<System.DateTimeOffset> value) { throw null; }
SetValidValue(System.Nullable<System.DateTimeOffset> value, string propertyName)4361         protected internal static System.Nullable<System.DateTimeOffset> SetValidValue(System.Nullable<System.DateTimeOffset> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.DateTime> value)4362         protected internal static System.Nullable<System.DateTime> SetValidValue(System.Nullable<System.DateTime> value) { throw null; }
SetValidValue(System.Nullable<System.DateTime> value, string propertyName)4363         protected internal static System.Nullable<System.DateTime> SetValidValue(System.Nullable<System.DateTime> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<decimal> value)4364         protected internal static System.Nullable<decimal> SetValidValue(System.Nullable<decimal> value) { throw null; }
SetValidValue(System.Nullable<decimal> value, string propertyName)4365         protected internal static System.Nullable<decimal> SetValidValue(System.Nullable<decimal> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<double> value)4366         protected internal static System.Nullable<double> SetValidValue(System.Nullable<double> value) { throw null; }
SetValidValue(System.Nullable<double> value, string propertyName)4367         protected internal static System.Nullable<double> SetValidValue(System.Nullable<double> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.Guid> value)4368         protected internal static System.Nullable<System.Guid> SetValidValue(System.Nullable<System.Guid> value) { throw null; }
SetValidValue(System.Nullable<System.Guid> value, string propertyName)4369         protected internal static System.Nullable<System.Guid> SetValidValue(System.Nullable<System.Guid> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<short> value)4370         protected internal static System.Nullable<short> SetValidValue(System.Nullable<short> value) { throw null; }
SetValidValue(System.Nullable<short> value, string propertyName)4371         protected internal static System.Nullable<short> SetValidValue(System.Nullable<short> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<int> value)4372         protected internal static System.Nullable<int> SetValidValue(System.Nullable<int> value) { throw null; }
SetValidValue(System.Nullable<int> value, string propertyName)4373         protected internal static System.Nullable<int> SetValidValue(System.Nullable<int> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<long> value)4374         protected internal static System.Nullable<long> SetValidValue(System.Nullable<long> value) { throw null; }
SetValidValue(System.Nullable<long> value, string propertyName)4375         protected internal static System.Nullable<long> SetValidValue(System.Nullable<long> value, string propertyName) { throw null; }
4376         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<sbyte> value)4377         protected internal static System.Nullable<sbyte> SetValidValue(System.Nullable<sbyte> value) { throw null; }
4378         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<sbyte> value, string propertyName)4379         protected internal static System.Nullable<sbyte> SetValidValue(System.Nullable<sbyte> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<float> value)4380         protected internal static System.Nullable<float> SetValidValue(System.Nullable<float> value) { throw null; }
SetValidValue(System.Nullable<float> value, string propertyName)4381         protected internal static System.Nullable<float> SetValidValue(System.Nullable<float> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.TimeSpan> value)4382         protected internal static System.Nullable<System.TimeSpan> SetValidValue(System.Nullable<System.TimeSpan> value) { throw null; }
SetValidValue(System.Nullable<System.TimeSpan> value, string propertyName)4383         protected internal static System.Nullable<System.TimeSpan> SetValidValue(System.Nullable<System.TimeSpan> value, string propertyName) { throw null; }
4384         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ushort> value)4385         protected internal static System.Nullable<ushort> SetValidValue(System.Nullable<ushort> value) { throw null; }
4386         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ushort> value, string propertyName)4387         protected internal static System.Nullable<ushort> SetValidValue(System.Nullable<ushort> value, string propertyName) { throw null; }
4388         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<uint> value)4389         protected internal static System.Nullable<uint> SetValidValue(System.Nullable<uint> value) { throw null; }
4390         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<uint> value, string propertyName)4391         protected internal static System.Nullable<uint> SetValidValue(System.Nullable<uint> value, string propertyName) { throw null; }
4392         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ulong> value)4393         protected internal static System.Nullable<ulong> SetValidValue(System.Nullable<ulong> value) { throw null; }
4394         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ulong> value, string propertyName)4395         protected internal static System.Nullable<ulong> SetValidValue(System.Nullable<ulong> value, string propertyName) { throw null; }
4396         [System.CLSCompliantAttribute(false)]
SetValidValue(sbyte value)4397         protected internal static sbyte SetValidValue(sbyte value) { throw null; }
4398         [System.CLSCompliantAttribute(false)]
SetValidValue(sbyte value, string propertyName)4399         protected internal static sbyte SetValidValue(sbyte value, string propertyName) { throw null; }
SetValidValue(float value)4400         protected internal static float SetValidValue(float value) { throw null; }
SetValidValue(float value, string propertyName)4401         protected internal static float SetValidValue(float value, string propertyName) { throw null; }
SetValidValue(string value, bool isNullable)4402         protected internal static string SetValidValue(string value, bool isNullable) { throw null; }
SetValidValue(string value, bool isNullable, string propertyName)4403         protected internal static string SetValidValue(string value, bool isNullable, string propertyName) { throw null; }
SetValidValue(System.TimeSpan value)4404         protected internal static System.TimeSpan SetValidValue(System.TimeSpan value) { throw null; }
SetValidValue(System.TimeSpan value, string propertyName)4405         protected internal static System.TimeSpan SetValidValue(System.TimeSpan value, string propertyName) { throw null; }
4406         [System.CLSCompliantAttribute(false)]
SetValidValue(ushort value)4407         protected internal static ushort SetValidValue(ushort value) { throw null; }
4408         [System.CLSCompliantAttribute(false)]
SetValidValue(ushort value, string propertyName)4409         protected internal static ushort SetValidValue(ushort value, string propertyName) { throw null; }
4410         [System.CLSCompliantAttribute(false)]
SetValidValue(uint value)4411         protected internal static uint SetValidValue(uint value) { throw null; }
4412         [System.CLSCompliantAttribute(false)]
SetValidValue(uint value, string propertyName)4413         protected internal static uint SetValidValue(uint value, string propertyName) { throw null; }
4414         [System.CLSCompliantAttribute(false)]
SetValidValue(ulong value)4415         protected internal static ulong SetValidValue(ulong value) { throw null; }
4416         [System.CLSCompliantAttribute(false)]
SetValidValue(ulong value, string propertyName)4417         protected internal static ulong SetValidValue(ulong value, string propertyName) { throw null; }
4418         protected internal T SetValidValue<T>(T oldValue, T newValue, string property) where T : System.Data.Objects.DataClasses.ComplexObject { throw null; }
4419         protected internal static TComplex VerifyComplexObjectIsNotNull<TComplex>(TComplex complexObject, string propertyName) where TComplex : System.Data.Objects.DataClasses.ComplexObject { throw null; }
4420     }
4421 }
4422 namespace System.Data.Objects.SqlClient
4423 {
4424     public static partial class SqlFunctions
4425     {
4426         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ACOS")]
Acos(System.Nullable<decimal> arg1)4427         public static System.Nullable<double> Acos(System.Nullable<decimal> arg1) { throw null; }
4428         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ACOS")]
Acos(System.Nullable<double> arg1)4429         public static System.Nullable<double> Acos(System.Nullable<double> arg1) { throw null; }
4430         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASCII")]
Ascii(string arg)4431         public static System.Nullable<int> Ascii(string arg) { throw null; }
4432         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASIN")]
Asin(System.Nullable<decimal> arg)4433         public static System.Nullable<double> Asin(System.Nullable<decimal> arg) { throw null; }
4434         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASIN")]
Asin(System.Nullable<double> arg)4435         public static System.Nullable<double> Asin(System.Nullable<double> arg) { throw null; }
4436         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATAN")]
Atan(System.Nullable<decimal> arg)4437         public static System.Nullable<double> Atan(System.Nullable<decimal> arg) { throw null; }
4438         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATAN")]
Atan(System.Nullable<double> arg)4439         public static System.Nullable<double> Atan(System.Nullable<double> arg) { throw null; }
4440         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATN2")]
Atan2(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2)4441         public static System.Nullable<double> Atan2(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2) { throw null; }
4442         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATN2")]
Atan2(System.Nullable<double> arg1, System.Nullable<double> arg2)4443         public static System.Nullable<double> Atan2(System.Nullable<double> arg1, System.Nullable<double> arg2) { throw null; }
4444         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHAR")]
Char(System.Nullable<int> arg)4445         public static string Char(System.Nullable<int> arg) { throw null; }
4446         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(byte[] toSearch, byte[] target)4447         public static System.Nullable<int> CharIndex(byte[] toSearch, byte[] target) { throw null; }
4448         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(byte[] toSearch, byte[] target, System.Nullable<int> startLocation)4449         public static System.Nullable<int> CharIndex(byte[] toSearch, byte[] target, System.Nullable<int> startLocation) { throw null; }
4450         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(byte[] toSearch, byte[] target, System.Nullable<long> startLocation)4451         public static System.Nullable<long> CharIndex(byte[] toSearch, byte[] target, System.Nullable<long> startLocation) { throw null; }
4452         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(string toSearch, string target)4453         public static System.Nullable<int> CharIndex(string toSearch, string target) { throw null; }
4454         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(string toSearch, string target, System.Nullable<int> startLocation)4455         public static System.Nullable<int> CharIndex(string toSearch, string target, System.Nullable<int> startLocation) { throw null; }
4456         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(string toSearch, string target, System.Nullable<long> startLocation)4457         public static System.Nullable<long> CharIndex(string toSearch, string target, System.Nullable<long> startLocation) { throw null; }
4458         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(byte[] arg1)4459         public static System.Nullable<int> Checksum(byte[] arg1) { throw null; }
4460         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(byte[] arg1, byte[] arg2)4461         public static System.Nullable<int> Checksum(byte[] arg1, byte[] arg2) { throw null; }
4462         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(byte[] arg1, byte[] arg2, byte[] arg3)4463         public static System.Nullable<int> Checksum(byte[] arg1, byte[] arg2, byte[] arg3) { throw null; }
4464         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<bool> arg1)4465         public static System.Nullable<int> Checksum(System.Nullable<bool> arg1) { throw null; }
4466         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2)4467         public static System.Nullable<int> Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2) { throw null; }
4468         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2, System.Nullable<bool> arg3)4469         public static System.Nullable<int> Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2, System.Nullable<bool> arg3) { throw null; }
4470         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTimeOffset> arg1)4471         public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1) { throw null; }
4472         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2)4473         public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2) { throw null; }
4474         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2, System.Nullable<System.DateTimeOffset> arg3)4475         public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2, System.Nullable<System.DateTimeOffset> arg3) { throw null; }
4476         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTime> arg1)4477         public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1) { throw null; }
4478         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2)4479         public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2) { throw null; }
4480         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2, System.Nullable<System.DateTime> arg3)4481         public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2, System.Nullable<System.DateTime> arg3) { throw null; }
4482         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<decimal> arg1)4483         public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1) { throw null; }
4484         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2)4485         public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2) { throw null; }
4486         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2, System.Nullable<decimal> arg3)4487         public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2, System.Nullable<decimal> arg3) { throw null; }
4488         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<double> arg1)4489         public static System.Nullable<int> Checksum(System.Nullable<double> arg1) { throw null; }
4490         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2)4491         public static System.Nullable<int> Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2) { throw null; }
4492         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2, System.Nullable<double> arg3)4493         public static System.Nullable<int> Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2, System.Nullable<double> arg3) { throw null; }
4494         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.Guid> arg1)4495         public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1) { throw null; }
4496         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2)4497         public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2) { throw null; }
4498         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2, System.Nullable<System.Guid> arg3)4499         public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2, System.Nullable<System.Guid> arg3) { throw null; }
4500         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.TimeSpan> arg1)4501         public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1) { throw null; }
4502         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2)4503         public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2) { throw null; }
4504         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2, System.Nullable<System.TimeSpan> arg3)4505         public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2, System.Nullable<System.TimeSpan> arg3) { throw null; }
4506         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(string arg1)4507         public static System.Nullable<int> Checksum(string arg1) { throw null; }
4508         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(string arg1, string arg2)4509         public static System.Nullable<int> Checksum(string arg1, string arg2) { throw null; }
4510         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(string arg1, string arg2, string arg3)4511         public static System.Nullable<int> Checksum(string arg1, string arg2, string arg3) { throw null; }
4512         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM_AGG")]
ChecksumAggregate(System.Collections.Generic.IEnumerable<int> arg)4513         public static System.Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<int> arg) { throw null; }
4514         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM_AGG")]
ChecksumAggregate(System.Collections.Generic.IEnumerable<System.Nullable<int>> arg)4515         public static System.Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<System.Nullable<int>> arg) { throw null; }
4516         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COS")]
Cos(System.Nullable<decimal> arg)4517         public static System.Nullable<double> Cos(System.Nullable<decimal> arg) { throw null; }
4518         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COS")]
Cos(System.Nullable<double> arg)4519         public static System.Nullable<double> Cos(System.Nullable<double> arg) { throw null; }
4520         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COT")]
Cot(System.Nullable<decimal> arg)4521         public static System.Nullable<double> Cot(System.Nullable<decimal> arg) { throw null; }
4522         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COT")]
Cot(System.Nullable<double> arg)4523         public static System.Nullable<double> Cot(System.Nullable<double> arg) { throw null; }
4524         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CURRENT_TIMESTAMP")]
CurrentTimestamp()4525         public static System.Nullable<System.DateTime> CurrentTimestamp() { throw null; }
4526         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CURRENT_USER")]
CurrentUser()4527         public static string CurrentUser() { throw null; }
4528         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(byte[] arg)4529         public static System.Nullable<int> DataLength(byte[] arg) { throw null; }
4530         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<bool> arg)4531         public static System.Nullable<int> DataLength(System.Nullable<bool> arg) { throw null; }
4532         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.DateTimeOffset> arg)4533         public static System.Nullable<int> DataLength(System.Nullable<System.DateTimeOffset> arg) { throw null; }
4534         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.DateTime> arg)4535         public static System.Nullable<int> DataLength(System.Nullable<System.DateTime> arg) { throw null; }
4536         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<decimal> arg)4537         public static System.Nullable<int> DataLength(System.Nullable<decimal> arg) { throw null; }
4538         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<double> arg)4539         public static System.Nullable<int> DataLength(System.Nullable<double> arg) { throw null; }
4540         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.Guid> arg)4541         public static System.Nullable<int> DataLength(System.Nullable<System.Guid> arg) { throw null; }
4542         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.TimeSpan> arg)4543         public static System.Nullable<int> DataLength(System.Nullable<System.TimeSpan> arg) { throw null; }
4544         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(string arg)4545         public static System.Nullable<int> DataLength(string arg) { throw null; }
4546         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTimeOffset> dateTimeOffsetArg)4547         public static System.Nullable<System.DateTimeOffset> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTimeOffset> dateTimeOffsetArg) { throw null; }
4548         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTime> date)4549         public static System.Nullable<System.DateTime> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTime> date) { throw null; }
4550         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.TimeSpan> time)4551         public static System.Nullable<System.TimeSpan> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.TimeSpan> time) { throw null; }
4552         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, string date)4553         public static System.Nullable<System.DateTime> DateAdd(string datePartArg, System.Nullable<double> number, string date) { throw null; }
4554         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTimeOffset> endDate)4555         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4556         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTime> endDate)4557         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4558         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.TimeSpan> endDate)4559         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4560         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, string endDate)4561         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, string endDate) { throw null; }
4562         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTimeOffset> endDate)4563         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4564         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTime> endDate)4565         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4566         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.TimeSpan> endDate)4567         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4568         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, string endDate)4569         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, string endDate) { throw null; }
4570         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTimeOffset> endDate)4571         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4572         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTime> endDate)4573         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4574         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.TimeSpan> endDate)4575         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4576         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, string endDate)4577         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, string endDate) { throw null; }
4578         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTimeOffset> endDate)4579         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4580         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTime> endDate)4581         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4582         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, System.Nullable<System.TimeSpan> endDate)4583         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4584         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, string endDate)4585         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, string endDate) { throw null; }
4586         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, System.Nullable<System.DateTimeOffset> date)4587         public static string DateName(string datePartArg, System.Nullable<System.DateTimeOffset> date) { throw null; }
4588         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, System.Nullable<System.DateTime> date)4589         public static string DateName(string datePartArg, System.Nullable<System.DateTime> date) { throw null; }
4590         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, System.Nullable<System.TimeSpan> date)4591         public static string DateName(string datePartArg, System.Nullable<System.TimeSpan> date) { throw null; }
4592         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, string date)4593         public static string DateName(string datePartArg, string date) { throw null; }
4594         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, System.Nullable<System.DateTimeOffset> date)4595         public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.DateTimeOffset> date) { throw null; }
4596         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, System.Nullable<System.DateTime> date)4597         public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.DateTime> date) { throw null; }
4598         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, System.Nullable<System.TimeSpan> date)4599         public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.TimeSpan> date) { throw null; }
4600         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, string date)4601         public static System.Nullable<int> DatePart(string datePartArg, string date) { throw null; }
4602         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<decimal> arg1)4603         public static System.Nullable<decimal> Degrees(System.Nullable<decimal> arg1) { throw null; }
4604         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<double> arg1)4605         public static System.Nullable<double> Degrees(System.Nullable<double> arg1) { throw null; }
4606         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<int> arg1)4607         public static System.Nullable<int> Degrees(System.Nullable<int> arg1) { throw null; }
4608         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<long> arg1)4609         public static System.Nullable<long> Degrees(System.Nullable<long> arg1) { throw null; }
4610         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DIFFERENCE")]
Difference(string string1, string string2)4611         public static System.Nullable<int> Difference(string string1, string string2) { throw null; }
4612         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "EXP")]
Exp(System.Nullable<decimal> arg)4613         public static System.Nullable<double> Exp(System.Nullable<decimal> arg) { throw null; }
4614         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "EXP")]
Exp(System.Nullable<double> arg)4615         public static System.Nullable<double> Exp(System.Nullable<double> arg) { throw null; }
4616         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "GETDATE")]
GetDate()4617         public static System.Nullable<System.DateTime> GetDate() { throw null; }
4618         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "GETUTCDATE")]
GetUtcDate()4619         public static System.Nullable<System.DateTime> GetUtcDate() { throw null; }
4620         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "HOST_NAME")]
HostName()4621         public static string HostName() { throw null; }
4622         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ISDATE")]
IsDate(string arg)4623         public static System.Nullable<int> IsDate(string arg) { throw null; }
4624         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ISNUMERIC")]
IsNumeric(string arg)4625         public static System.Nullable<int> IsNumeric(string arg) { throw null; }
4626         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG")]
Log(System.Nullable<decimal> arg)4627         public static System.Nullable<double> Log(System.Nullable<decimal> arg) { throw null; }
4628         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG")]
Log(System.Nullable<double> arg)4629         public static System.Nullable<double> Log(System.Nullable<double> arg) { throw null; }
4630         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG10")]
Log10(System.Nullable<decimal> arg)4631         public static System.Nullable<double> Log10(System.Nullable<decimal> arg) { throw null; }
4632         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG10")]
Log10(System.Nullable<double> arg)4633         public static System.Nullable<double> Log10(System.Nullable<double> arg) { throw null; }
4634         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "NCHAR")]
NChar(System.Nullable<int> arg)4635         public static string NChar(System.Nullable<int> arg) { throw null; }
4636         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "PATINDEX")]
PatIndex(string stringPattern, string target)4637         public static System.Nullable<int> PatIndex(string stringPattern, string target) { throw null; }
4638         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "PI")]
Pi()4639         public static System.Nullable<double> Pi() { throw null; }
4640         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "QUOTENAME")]
QuoteName(string stringArg)4641         public static string QuoteName(string stringArg) { throw null; }
4642         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "QUOTENAME")]
QuoteName(string stringArg, string quoteCharacter)4643         public static string QuoteName(string stringArg, string quoteCharacter) { throw null; }
4644         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<decimal> arg)4645         public static System.Nullable<decimal> Radians(System.Nullable<decimal> arg) { throw null; }
4646         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<double> arg)4647         public static System.Nullable<double> Radians(System.Nullable<double> arg) { throw null; }
4648         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<int> arg)4649         public static System.Nullable<int> Radians(System.Nullable<int> arg) { throw null; }
4650         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<long> arg)4651         public static System.Nullable<long> Radians(System.Nullable<long> arg) { throw null; }
4652         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RAND")]
Rand()4653         public static System.Nullable<double> Rand() { throw null; }
4654         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RAND")]
Rand(System.Nullable<int> seed)4655         public static System.Nullable<double> Rand(System.Nullable<int> seed) { throw null; }
4656         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REPLICATE")]
Replicate(string target, System.Nullable<int> count)4657         public static string Replicate(string target, System.Nullable<int> count) { throw null; }
4658         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<decimal> arg)4659         public static System.Nullable<decimal> Sign(System.Nullable<decimal> arg) { throw null; }
4660         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<double> arg)4661         public static System.Nullable<double> Sign(System.Nullable<double> arg) { throw null; }
4662         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<int> arg)4663         public static System.Nullable<int> Sign(System.Nullable<int> arg) { throw null; }
4664         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<long> arg)4665         public static System.Nullable<long> Sign(System.Nullable<long> arg) { throw null; }
4666         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIN")]
Sin(System.Nullable<decimal> arg)4667         public static System.Nullable<double> Sin(System.Nullable<decimal> arg) { throw null; }
4668         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIN")]
Sin(System.Nullable<double> arg)4669         public static System.Nullable<double> Sin(System.Nullable<double> arg) { throw null; }
4670         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SOUNDEX")]
SoundCode(string arg)4671         public static string SoundCode(string arg) { throw null; }
4672         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SPACE")]
Space(System.Nullable<int> arg1)4673         public static string Space(System.Nullable<int> arg1) { throw null; }
4674         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQUARE")]
Square(System.Nullable<decimal> arg1)4675         public static System.Nullable<double> Square(System.Nullable<decimal> arg1) { throw null; }
4676         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQUARE")]
Square(System.Nullable<double> arg1)4677         public static System.Nullable<double> Square(System.Nullable<double> arg1) { throw null; }
4678         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQRT")]
SquareRoot(System.Nullable<decimal> arg)4679         public static System.Nullable<double> SquareRoot(System.Nullable<decimal> arg) { throw null; }
4680         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQRT")]
SquareRoot(System.Nullable<double> arg)4681         public static System.Nullable<double> SquareRoot(System.Nullable<double> arg) { throw null; }
4682         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<decimal> number)4683         public static string StringConvert(System.Nullable<decimal> number) { throw null; }
4684         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<decimal> number, System.Nullable<int> length)4685         public static string StringConvert(System.Nullable<decimal> number, System.Nullable<int> length) { throw null; }
4686         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<decimal> number, System.Nullable<int> length, System.Nullable<int> decimalArg)4687         public static string StringConvert(System.Nullable<decimal> number, System.Nullable<int> length, System.Nullable<int> decimalArg) { throw null; }
4688         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<double> number)4689         public static string StringConvert(System.Nullable<double> number) { throw null; }
4690         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<double> number, System.Nullable<int> length)4691         public static string StringConvert(System.Nullable<double> number, System.Nullable<int> length) { throw null; }
4692         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<double> number, System.Nullable<int> length, System.Nullable<int> decimalArg)4693         public static string StringConvert(System.Nullable<double> number, System.Nullable<int> length, System.Nullable<int> decimalArg) { throw null; }
4694         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STUFF")]
Stuff(string stringInput, System.Nullable<int> start, System.Nullable<int> length, string stringReplacement)4695         public static string Stuff(string stringInput, System.Nullable<int> start, System.Nullable<int> length, string stringReplacement) { throw null; }
4696         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "TAN")]
Tan(System.Nullable<decimal> arg)4697         public static System.Nullable<double> Tan(System.Nullable<decimal> arg) { throw null; }
4698         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "TAN")]
Tan(System.Nullable<double> arg)4699         public static System.Nullable<double> Tan(System.Nullable<double> arg) { throw null; }
4700         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "UNICODE")]
Unicode(string arg)4701         public static System.Nullable<int> Unicode(string arg) { throw null; }
4702         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "USER_NAME")]
UserName()4703         public static string UserName() { throw null; }
4704         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "USER_NAME")]
UserName(System.Nullable<int> arg)4705         public static string UserName(System.Nullable<int> arg) { throw null; }
4706     }
4707     public static partial class SqlSpatialFunctions
4708     {
4709         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASTEXTZM")]
AsTextZM(System.Data.Spatial.DbGeography geographyValue)4710         public static string AsTextZM(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4711         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASTEXTZM")]
AsTextZM(System.Data.Spatial.DbGeometry geometryValue)4712         public static string AsTextZM(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
4713         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "BUFFERWITHTOLERANCE")]
BufferWithTolerance(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> distance, System.Nullable<double> tolerance, System.Nullable<bool> relative)4714         public static System.Data.Spatial.DbGeography BufferWithTolerance(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> distance, System.Nullable<double> tolerance, System.Nullable<bool> relative) { throw null; }
4715         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "BUFFERWITHTOLERANCE")]
BufferWithTolerance(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> distance, System.Nullable<double> tolerance, System.Nullable<bool> relative)4716         public static System.Data.Spatial.DbGeometry BufferWithTolerance(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> distance, System.Nullable<double> tolerance, System.Nullable<bool> relative) { throw null; }
4717         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ENVELOPEANGLE")]
EnvelopeAngle(System.Data.Spatial.DbGeography geographyValue)4718         public static System.Nullable<double> EnvelopeAngle(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4719         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ENVELOPECENTER")]
EnvelopeCenter(System.Data.Spatial.DbGeography geographyValue)4720         public static System.Data.Spatial.DbGeography EnvelopeCenter(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4721         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "FILTER")]
Filter(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography geographyOther)4722         public static System.Nullable<bool> Filter(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography geographyOther) { throw null; }
4723         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "FILTER")]
Filter(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry geometryOther)4724         public static System.Nullable<bool> Filter(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry geometryOther) { throw null; }
4725         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "INSTANCEOF")]
InstanceOf(System.Data.Spatial.DbGeography geographyValue, string geometryTypeName)4726         public static System.Nullable<bool> InstanceOf(System.Data.Spatial.DbGeography geographyValue, string geometryTypeName) { throw null; }
4727         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "INSTANCEOF")]
InstanceOf(System.Data.Spatial.DbGeometry geometryValue, string geometryTypeName)4728         public static System.Nullable<bool> InstanceOf(System.Data.Spatial.DbGeometry geometryValue, string geometryTypeName) { throw null; }
4729         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "MAKEVALID")]
MakeValid(System.Data.Spatial.DbGeometry geometryValue)4730         public static System.Data.Spatial.DbGeometry MakeValid(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
4731         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "NUMRINGS")]
NumRings(System.Data.Spatial.DbGeography geographyValue)4732         public static System.Nullable<int> NumRings(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4733         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "POINTGEOGRAPHY")]
PointGeography(System.Nullable<double> latitude, System.Nullable<double> longitude, System.Nullable<int> spatialReferenceId)4734         public static System.Data.Spatial.DbGeography PointGeography(System.Nullable<double> latitude, System.Nullable<double> longitude, System.Nullable<int> spatialReferenceId) { throw null; }
4735         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "POINTGEOMETRY")]
PointGeometry(System.Nullable<double> xCoordinate, System.Nullable<double> yCoordinate, System.Nullable<int> spatialReferenceId)4736         public static System.Data.Spatial.DbGeometry PointGeometry(System.Nullable<double> xCoordinate, System.Nullable<double> yCoordinate, System.Nullable<int> spatialReferenceId) { throw null; }
4737         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REDUCE")]
Reduce(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> tolerance)4738         public static System.Data.Spatial.DbGeography Reduce(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> tolerance) { throw null; }
4739         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REDUCE")]
Reduce(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> tolerance)4740         public static System.Data.Spatial.DbGeometry Reduce(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> tolerance) { throw null; }
4741         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RINGN")]
RingN(System.Data.Spatial.DbGeography geographyValue, System.Nullable<int> index)4742         public static System.Data.Spatial.DbGeography RingN(System.Data.Spatial.DbGeography geographyValue, System.Nullable<int> index) { throw null; }
4743     }
4744 }
4745 namespace System.Data.Spatial
4746 {
4747     [System.ComponentModel.DataAnnotations.BindableTypeAttribute]
4748     [System.Runtime.Serialization.DataContractAttribute]
4749     [System.SerializableAttribute]
4750     public partial class DbGeography
4751     {
DbGeography()4752         internal DbGeography() { }
4753         public System.Nullable<double> Area { get { throw null; } }
4754         public int CoordinateSystemId { get { throw null; } }
4755         public static int DefaultCoordinateSystemId { get { throw null; } }
4756         public int Dimension { get { throw null; } }
4757         public System.Nullable<int> ElementCount { get { throw null; } }
4758         public System.Nullable<double> Elevation { get { throw null; } }
4759         public System.Data.Spatial.DbGeography EndPoint { get { throw null; } }
4760         public System.Nullable<bool> IsClosed { get { throw null; } }
4761         public bool IsEmpty { get { throw null; } }
4762         public System.Nullable<double> Latitude { get { throw null; } }
4763         public System.Nullable<double> Length { get { throw null; } }
4764         public System.Nullable<double> Longitude { get { throw null; } }
4765         public System.Nullable<double> Measure { get { throw null; } }
4766         public System.Nullable<int> PointCount { get { throw null; } }
4767         public object ProviderValue { get { throw null; } }
4768         public string SpatialTypeName { get { throw null; } }
4769         public System.Data.Spatial.DbGeography StartPoint { get { throw null; } }
4770         [System.Runtime.Serialization.DataMemberAttribute(Name="Geography")]
4771         public System.Data.Spatial.DbGeographyWellKnownValue WellKnownValue { get { throw null; } set { } }
AsBinary()4772         public byte[] AsBinary() { throw null; }
AsGml()4773         public string AsGml() { throw null; }
AsText()4774         public string AsText() { throw null; }
Buffer(System.Nullable<double> distance)4775         public System.Data.Spatial.DbGeography Buffer(System.Nullable<double> distance) { throw null; }
Difference(System.Data.Spatial.DbGeography other)4776         public System.Data.Spatial.DbGeography Difference(System.Data.Spatial.DbGeography other) { throw null; }
Disjoint(System.Data.Spatial.DbGeography other)4777         public bool Disjoint(System.Data.Spatial.DbGeography other) { throw null; }
Distance(System.Data.Spatial.DbGeography other)4778         public System.Nullable<double> Distance(System.Data.Spatial.DbGeography other) { throw null; }
ElementAt(int index)4779         public System.Data.Spatial.DbGeography ElementAt(int index) { throw null; }
FromBinary(byte[] wellKnownBinary)4780         public static System.Data.Spatial.DbGeography FromBinary(byte[] wellKnownBinary) { throw null; }
FromBinary(byte[] wellKnownBinary, int coordinateSystemId)4781         public static System.Data.Spatial.DbGeography FromBinary(byte[] wellKnownBinary, int coordinateSystemId) { throw null; }
FromGml(string geographyMarkup)4782         public static System.Data.Spatial.DbGeography FromGml(string geographyMarkup) { throw null; }
FromGml(string geographyMarkup, int coordinateSystemId)4783         public static System.Data.Spatial.DbGeography FromGml(string geographyMarkup, int coordinateSystemId) { throw null; }
FromText(string wellKnownText)4784         public static System.Data.Spatial.DbGeography FromText(string wellKnownText) { throw null; }
FromText(string wellKnownText, int coordinateSystemId)4785         public static System.Data.Spatial.DbGeography FromText(string wellKnownText, int coordinateSystemId) { throw null; }
GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId)4786         public static System.Data.Spatial.DbGeography GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId) { throw null; }
GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId)4787         public static System.Data.Spatial.DbGeography GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId) { throw null; }
Intersection(System.Data.Spatial.DbGeography other)4788         public System.Data.Spatial.DbGeography Intersection(System.Data.Spatial.DbGeography other) { throw null; }
Intersects(System.Data.Spatial.DbGeography other)4789         public bool Intersects(System.Data.Spatial.DbGeography other) { throw null; }
LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4790         public static System.Data.Spatial.DbGeography LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId) { throw null; }
LineFromText(string lineWellKnownText, int coordinateSystemId)4791         public static System.Data.Spatial.DbGeography LineFromText(string lineWellKnownText, int coordinateSystemId) { throw null; }
MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4792         public static System.Data.Spatial.DbGeography MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId) { throw null; }
MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4793         public static System.Data.Spatial.DbGeography MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId) { throw null; }
MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4794         public static System.Data.Spatial.DbGeography MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4795         public static System.Data.Spatial.DbGeography MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId) { throw null; }
MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4796         public static System.Data.Spatial.DbGeography MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId)4797         public static System.Data.Spatial.DbGeography MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId) { throw null; }
PointAt(int index)4798         public System.Data.Spatial.DbGeography PointAt(int index) { throw null; }
PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4799         public static System.Data.Spatial.DbGeography PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId) { throw null; }
PointFromText(string pointWellKnownText, int coordinateSystemId)4800         public static System.Data.Spatial.DbGeography PointFromText(string pointWellKnownText, int coordinateSystemId) { throw null; }
PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4801         public static System.Data.Spatial.DbGeography PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId) { throw null; }
PolygonFromText(string polygonWellKnownText, int coordinateSystemId)4802         public static System.Data.Spatial.DbGeography PolygonFromText(string polygonWellKnownText, int coordinateSystemId) { throw null; }
SpatialEquals(System.Data.Spatial.DbGeography other)4803         public bool SpatialEquals(System.Data.Spatial.DbGeography other) { throw null; }
SymmetricDifference(System.Data.Spatial.DbGeography other)4804         public System.Data.Spatial.DbGeography SymmetricDifference(System.Data.Spatial.DbGeography other) { throw null; }
ToString()4805         public override string ToString() { throw null; }
Union(System.Data.Spatial.DbGeography other)4806         public System.Data.Spatial.DbGeography Union(System.Data.Spatial.DbGeography other) { throw null; }
4807     }
4808     [System.Runtime.Serialization.DataContractAttribute]
4809     public sealed partial class DbGeographyWellKnownValue
4810     {
DbGeographyWellKnownValue()4811         public DbGeographyWellKnownValue() { }
4812         [System.Runtime.Serialization.DataMemberAttribute(Order=1, IsRequired=false, EmitDefaultValue=false)]
4813         public int CoordinateSystemId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4814         [System.Runtime.Serialization.DataMemberAttribute(Order=3, IsRequired=false, EmitDefaultValue=false)]
4815         public byte[] WellKnownBinary { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4816         [System.Runtime.Serialization.DataMemberAttribute(Order=2, IsRequired=false, EmitDefaultValue=false)]
4817         public string WellKnownText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4818     }
4819     [System.ComponentModel.DataAnnotations.BindableTypeAttribute]
4820     [System.Runtime.Serialization.DataContractAttribute]
4821     [System.SerializableAttribute]
4822     public partial class DbGeometry
4823     {
DbGeometry()4824         internal DbGeometry() { }
4825         public System.Nullable<double> Area { get { throw null; } }
4826         public System.Data.Spatial.DbGeometry Boundary { get { throw null; } }
4827         public System.Data.Spatial.DbGeometry Centroid { get { throw null; } }
4828         public System.Data.Spatial.DbGeometry ConvexHull { get { throw null; } }
4829         public int CoordinateSystemId { get { throw null; } }
4830         public static int DefaultCoordinateSystemId { get { throw null; } }
4831         public int Dimension { get { throw null; } }
4832         public System.Nullable<int> ElementCount { get { throw null; } }
4833         public System.Nullable<double> Elevation { get { throw null; } }
4834         public System.Data.Spatial.DbGeometry EndPoint { get { throw null; } }
4835         public System.Data.Spatial.DbGeometry Envelope { get { throw null; } }
4836         public System.Data.Spatial.DbGeometry ExteriorRing { get { throw null; } }
4837         public System.Nullable<int> InteriorRingCount { get { throw null; } }
4838         public System.Nullable<bool> IsClosed { get { throw null; } }
4839         public bool IsEmpty { get { throw null; } }
4840         public System.Nullable<bool> IsRing { get { throw null; } }
4841         public bool IsSimple { get { throw null; } }
4842         public bool IsValid { get { throw null; } }
4843         public System.Nullable<double> Length { get { throw null; } }
4844         public System.Nullable<double> Measure { get { throw null; } }
4845         public System.Nullable<int> PointCount { get { throw null; } }
4846         public System.Data.Spatial.DbGeometry PointOnSurface { get { throw null; } }
4847         public object ProviderValue { get { throw null; } }
4848         public string SpatialTypeName { get { throw null; } }
4849         public System.Data.Spatial.DbGeometry StartPoint { get { throw null; } }
4850         [System.Runtime.Serialization.DataMemberAttribute(Name="Geometry")]
4851         public System.Data.Spatial.DbGeometryWellKnownValue WellKnownValue { get { throw null; } set { } }
4852         public System.Nullable<double> XCoordinate { get { throw null; } }
4853         public System.Nullable<double> YCoordinate { get { throw null; } }
AsBinary()4854         public byte[] AsBinary() { throw null; }
AsGml()4855         public string AsGml() { throw null; }
AsText()4856         public string AsText() { throw null; }
Buffer(System.Nullable<double> distance)4857         public System.Data.Spatial.DbGeometry Buffer(System.Nullable<double> distance) { throw null; }
Contains(System.Data.Spatial.DbGeometry other)4858         public bool Contains(System.Data.Spatial.DbGeometry other) { throw null; }
Crosses(System.Data.Spatial.DbGeometry other)4859         public bool Crosses(System.Data.Spatial.DbGeometry other) { throw null; }
Difference(System.Data.Spatial.DbGeometry other)4860         public System.Data.Spatial.DbGeometry Difference(System.Data.Spatial.DbGeometry other) { throw null; }
Disjoint(System.Data.Spatial.DbGeometry other)4861         public bool Disjoint(System.Data.Spatial.DbGeometry other) { throw null; }
Distance(System.Data.Spatial.DbGeometry other)4862         public System.Nullable<double> Distance(System.Data.Spatial.DbGeometry other) { throw null; }
ElementAt(int index)4863         public System.Data.Spatial.DbGeometry ElementAt(int index) { throw null; }
FromBinary(byte[] wellKnownBinary)4864         public static System.Data.Spatial.DbGeometry FromBinary(byte[] wellKnownBinary) { throw null; }
FromBinary(byte[] wellKnownBinary, int coordinateSystemId)4865         public static System.Data.Spatial.DbGeometry FromBinary(byte[] wellKnownBinary, int coordinateSystemId) { throw null; }
FromGml(string geometryMarkup)4866         public static System.Data.Spatial.DbGeometry FromGml(string geometryMarkup) { throw null; }
FromGml(string geometryMarkup, int coordinateSystemId)4867         public static System.Data.Spatial.DbGeometry FromGml(string geometryMarkup, int coordinateSystemId) { throw null; }
FromText(string wellKnownText)4868         public static System.Data.Spatial.DbGeometry FromText(string wellKnownText) { throw null; }
FromText(string wellKnownText, int coordinateSystemId)4869         public static System.Data.Spatial.DbGeometry FromText(string wellKnownText, int coordinateSystemId) { throw null; }
GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId)4870         public static System.Data.Spatial.DbGeometry GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId) { throw null; }
GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId)4871         public static System.Data.Spatial.DbGeometry GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId) { throw null; }
InteriorRingAt(int index)4872         public System.Data.Spatial.DbGeometry InteriorRingAt(int index) { throw null; }
Intersection(System.Data.Spatial.DbGeometry other)4873         public System.Data.Spatial.DbGeometry Intersection(System.Data.Spatial.DbGeometry other) { throw null; }
Intersects(System.Data.Spatial.DbGeometry other)4874         public bool Intersects(System.Data.Spatial.DbGeometry other) { throw null; }
LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4875         public static System.Data.Spatial.DbGeometry LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId) { throw null; }
LineFromText(string lineWellKnownText, int coordinateSystemId)4876         public static System.Data.Spatial.DbGeometry LineFromText(string lineWellKnownText, int coordinateSystemId) { throw null; }
MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4877         public static System.Data.Spatial.DbGeometry MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId) { throw null; }
MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4878         public static System.Data.Spatial.DbGeometry MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId) { throw null; }
MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4879         public static System.Data.Spatial.DbGeometry MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4880         public static System.Data.Spatial.DbGeometry MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId) { throw null; }
MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4881         public static System.Data.Spatial.DbGeometry MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId)4882         public static System.Data.Spatial.DbGeometry MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId) { throw null; }
Overlaps(System.Data.Spatial.DbGeometry other)4883         public bool Overlaps(System.Data.Spatial.DbGeometry other) { throw null; }
PointAt(int index)4884         public System.Data.Spatial.DbGeometry PointAt(int index) { throw null; }
PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4885         public static System.Data.Spatial.DbGeometry PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId) { throw null; }
PointFromText(string pointWellKnownText, int coordinateSystemId)4886         public static System.Data.Spatial.DbGeometry PointFromText(string pointWellKnownText, int coordinateSystemId) { throw null; }
PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4887         public static System.Data.Spatial.DbGeometry PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId) { throw null; }
PolygonFromText(string polygonWellKnownText, int coordinateSystemId)4888         public static System.Data.Spatial.DbGeometry PolygonFromText(string polygonWellKnownText, int coordinateSystemId) { throw null; }
Relate(System.Data.Spatial.DbGeometry other, string matrix)4889         public bool Relate(System.Data.Spatial.DbGeometry other, string matrix) { throw null; }
SpatialEquals(System.Data.Spatial.DbGeometry other)4890         public bool SpatialEquals(System.Data.Spatial.DbGeometry other) { throw null; }
SymmetricDifference(System.Data.Spatial.DbGeometry other)4891         public System.Data.Spatial.DbGeometry SymmetricDifference(System.Data.Spatial.DbGeometry other) { throw null; }
ToString()4892         public override string ToString() { throw null; }
Touches(System.Data.Spatial.DbGeometry other)4893         public bool Touches(System.Data.Spatial.DbGeometry other) { throw null; }
Union(System.Data.Spatial.DbGeometry other)4894         public System.Data.Spatial.DbGeometry Union(System.Data.Spatial.DbGeometry other) { throw null; }
Within(System.Data.Spatial.DbGeometry other)4895         public bool Within(System.Data.Spatial.DbGeometry other) { throw null; }
4896     }
4897     [System.Runtime.Serialization.DataContractAttribute]
4898     public sealed partial class DbGeometryWellKnownValue
4899     {
DbGeometryWellKnownValue()4900         public DbGeometryWellKnownValue() { }
4901         [System.Runtime.Serialization.DataMemberAttribute(Order=1, IsRequired=false, EmitDefaultValue=false)]
4902         public int CoordinateSystemId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4903         [System.Runtime.Serialization.DataMemberAttribute(Order=3, IsRequired=false, EmitDefaultValue=false)]
4904         public byte[] WellKnownBinary { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4905         [System.Runtime.Serialization.DataMemberAttribute(Order=2, IsRequired=false, EmitDefaultValue=false)]
4906         public string WellKnownText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4907     }
4908     public abstract partial class DbSpatialDataReader
4909     {
DbSpatialDataReader()4910         protected DbSpatialDataReader() { }
GetGeography(int ordinal)4911         public abstract System.Data.Spatial.DbGeography GetGeography(int ordinal);
GetGeometry(int ordinal)4912         public abstract System.Data.Spatial.DbGeometry GetGeometry(int ordinal);
4913     }
4914     [System.SerializableAttribute]
4915     public abstract partial class DbSpatialServices
4916     {
DbSpatialServices()4917         protected DbSpatialServices() { }
4918         public static System.Data.Spatial.DbSpatialServices Default { get { throw null; } }
AsBinary(System.Data.Spatial.DbGeography geographyValue)4919         public abstract byte[] AsBinary(System.Data.Spatial.DbGeography geographyValue);
AsBinary(System.Data.Spatial.DbGeometry geometryValue)4920         public abstract byte[] AsBinary(System.Data.Spatial.DbGeometry geometryValue);
AsGml(System.Data.Spatial.DbGeography geographyValue)4921         public abstract string AsGml(System.Data.Spatial.DbGeography geographyValue);
AsGml(System.Data.Spatial.DbGeometry geometryValue)4922         public abstract string AsGml(System.Data.Spatial.DbGeometry geometryValue);
AsText(System.Data.Spatial.DbGeography geographyValue)4923         public abstract string AsText(System.Data.Spatial.DbGeography geographyValue);
AsText(System.Data.Spatial.DbGeometry geometryValue)4924         public abstract string AsText(System.Data.Spatial.DbGeometry geometryValue);
AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeography geographyValue)4925         public virtual string AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeography geographyValue) { throw null; }
AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeometry geometryValue)4926         public virtual string AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
Buffer(System.Data.Spatial.DbGeography geographyValue, double distance)4927         public abstract System.Data.Spatial.DbGeography Buffer(System.Data.Spatial.DbGeography geographyValue, double distance);
Buffer(System.Data.Spatial.DbGeometry geometryValue, double distance)4928         public abstract System.Data.Spatial.DbGeometry Buffer(System.Data.Spatial.DbGeometry geometryValue, double distance);
Contains(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)4929         public abstract bool Contains(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
CreateGeography(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue)4930         protected static System.Data.Spatial.DbGeography CreateGeography(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue) { throw null; }
CreateGeometry(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue)4931         protected static System.Data.Spatial.DbGeometry CreateGeometry(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue) { throw null; }
CreateProviderValue(System.Data.Spatial.DbGeographyWellKnownValue wellKnownValue)4932         public abstract object CreateProviderValue(System.Data.Spatial.DbGeographyWellKnownValue wellKnownValue);
CreateProviderValue(System.Data.Spatial.DbGeometryWellKnownValue wellKnownValue)4933         public abstract object CreateProviderValue(System.Data.Spatial.DbGeometryWellKnownValue wellKnownValue);
CreateWellKnownValue(System.Data.Spatial.DbGeography geographyValue)4934         public abstract System.Data.Spatial.DbGeographyWellKnownValue CreateWellKnownValue(System.Data.Spatial.DbGeography geographyValue);
CreateWellKnownValue(System.Data.Spatial.DbGeometry geometryValue)4935         public abstract System.Data.Spatial.DbGeometryWellKnownValue CreateWellKnownValue(System.Data.Spatial.DbGeometry geometryValue);
Crosses(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)4936         public abstract bool Crosses(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Difference(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)4937         public abstract System.Data.Spatial.DbGeography Difference(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
Difference(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)4938         public abstract System.Data.Spatial.DbGeometry Difference(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Disjoint(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)4939         public abstract bool Disjoint(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
Disjoint(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)4940         public abstract bool Disjoint(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Distance(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)4941         public abstract double Distance(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
Distance(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)4942         public abstract double Distance(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
ElementAt(System.Data.Spatial.DbGeography geographyValue, int index)4943         public abstract System.Data.Spatial.DbGeography ElementAt(System.Data.Spatial.DbGeography geographyValue, int index);
ElementAt(System.Data.Spatial.DbGeometry geometryValue, int index)4944         public abstract System.Data.Spatial.DbGeometry ElementAt(System.Data.Spatial.DbGeometry geometryValue, int index);
GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId)4945         public abstract System.Data.Spatial.DbGeography GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId);
GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId)4946         public abstract System.Data.Spatial.DbGeography GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId);
GeographyFromBinary(byte[] wellKnownBinary)4947         public abstract System.Data.Spatial.DbGeography GeographyFromBinary(byte[] wellKnownBinary);
GeographyFromBinary(byte[] wellKnownBinary, int coordinateSystemId)4948         public abstract System.Data.Spatial.DbGeography GeographyFromBinary(byte[] wellKnownBinary, int coordinateSystemId);
GeographyFromGml(string geographyMarkup)4949         public abstract System.Data.Spatial.DbGeography GeographyFromGml(string geographyMarkup);
GeographyFromGml(string geographyMarkup, int coordinateSystemId)4950         public abstract System.Data.Spatial.DbGeography GeographyFromGml(string geographyMarkup, int coordinateSystemId);
GeographyFromProviderValue(object providerValue)4951         public abstract System.Data.Spatial.DbGeography GeographyFromProviderValue(object providerValue);
GeographyFromText(string wellKnownText)4952         public abstract System.Data.Spatial.DbGeography GeographyFromText(string wellKnownText);
GeographyFromText(string wellKnownText, int coordinateSystemId)4953         public abstract System.Data.Spatial.DbGeography GeographyFromText(string wellKnownText, int coordinateSystemId);
GeographyLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4954         public abstract System.Data.Spatial.DbGeography GeographyLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId);
GeographyLineFromText(string lineWellKnownText, int coordinateSystemId)4955         public abstract System.Data.Spatial.DbGeography GeographyLineFromText(string lineWellKnownText, int coordinateSystemId);
GeographyMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4956         public abstract System.Data.Spatial.DbGeography GeographyMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId);
GeographyMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4957         public abstract System.Data.Spatial.DbGeography GeographyMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId);
GeographyMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4958         public abstract System.Data.Spatial.DbGeography GeographyMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId);
GeographyMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4959         public abstract System.Data.Spatial.DbGeography GeographyMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId);
GeographyMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4960         public abstract System.Data.Spatial.DbGeography GeographyMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId);
GeographyMultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId)4961         public abstract System.Data.Spatial.DbGeography GeographyMultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId);
GeographyPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4962         public abstract System.Data.Spatial.DbGeography GeographyPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId);
GeographyPointFromText(string pointWellKnownText, int coordinateSystemId)4963         public abstract System.Data.Spatial.DbGeography GeographyPointFromText(string pointWellKnownText, int coordinateSystemId);
GeographyPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4964         public abstract System.Data.Spatial.DbGeography GeographyPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId);
GeographyPolygonFromText(string polygonWellKnownText, int coordinateSystemId)4965         public abstract System.Data.Spatial.DbGeography GeographyPolygonFromText(string polygonWellKnownText, int coordinateSystemId);
GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId)4966         public abstract System.Data.Spatial.DbGeometry GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId);
GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId)4967         public abstract System.Data.Spatial.DbGeometry GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId);
GeometryFromBinary(byte[] wellKnownBinary)4968         public abstract System.Data.Spatial.DbGeometry GeometryFromBinary(byte[] wellKnownBinary);
GeometryFromBinary(byte[] wellKnownBinary, int coordinateSystemId)4969         public abstract System.Data.Spatial.DbGeometry GeometryFromBinary(byte[] wellKnownBinary, int coordinateSystemId);
GeometryFromGml(string geometryMarkup)4970         public abstract System.Data.Spatial.DbGeometry GeometryFromGml(string geometryMarkup);
GeometryFromGml(string geometryMarkup, int coordinateSystemId)4971         public abstract System.Data.Spatial.DbGeometry GeometryFromGml(string geometryMarkup, int coordinateSystemId);
GeometryFromProviderValue(object providerValue)4972         public abstract System.Data.Spatial.DbGeometry GeometryFromProviderValue(object providerValue);
GeometryFromText(string wellKnownText)4973         public abstract System.Data.Spatial.DbGeometry GeometryFromText(string wellKnownText);
GeometryFromText(string wellKnownText, int coordinateSystemId)4974         public abstract System.Data.Spatial.DbGeometry GeometryFromText(string wellKnownText, int coordinateSystemId);
GeometryLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4975         public abstract System.Data.Spatial.DbGeometry GeometryLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId);
GeometryLineFromText(string lineWellKnownText, int coordinateSystemId)4976         public abstract System.Data.Spatial.DbGeometry GeometryLineFromText(string lineWellKnownText, int coordinateSystemId);
GeometryMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4977         public abstract System.Data.Spatial.DbGeometry GeometryMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId);
GeometryMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4978         public abstract System.Data.Spatial.DbGeometry GeometryMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId);
GeometryMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4979         public abstract System.Data.Spatial.DbGeometry GeometryMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId);
GeometryMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4980         public abstract System.Data.Spatial.DbGeometry GeometryMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId);
GeometryMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4981         public abstract System.Data.Spatial.DbGeometry GeometryMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId);
GeometryMultiPolygonFromText(string multiPolygonKnownText, int coordinateSystemId)4982         public abstract System.Data.Spatial.DbGeometry GeometryMultiPolygonFromText(string multiPolygonKnownText, int coordinateSystemId);
GeometryPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4983         public abstract System.Data.Spatial.DbGeometry GeometryPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId);
GeometryPointFromText(string pointWellKnownText, int coordinateSystemId)4984         public abstract System.Data.Spatial.DbGeometry GeometryPointFromText(string pointWellKnownText, int coordinateSystemId);
GeometryPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4985         public abstract System.Data.Spatial.DbGeometry GeometryPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId);
GeometryPolygonFromText(string polygonWellKnownText, int coordinateSystemId)4986         public abstract System.Data.Spatial.DbGeometry GeometryPolygonFromText(string polygonWellKnownText, int coordinateSystemId);
GetArea(System.Data.Spatial.DbGeography geographyValue)4987         public abstract System.Nullable<double> GetArea(System.Data.Spatial.DbGeography geographyValue);
GetArea(System.Data.Spatial.DbGeometry geometryValue)4988         public abstract System.Nullable<double> GetArea(System.Data.Spatial.DbGeometry geometryValue);
GetBoundary(System.Data.Spatial.DbGeometry geometryValue)4989         public abstract System.Data.Spatial.DbGeometry GetBoundary(System.Data.Spatial.DbGeometry geometryValue);
GetCentroid(System.Data.Spatial.DbGeometry geometryValue)4990         public abstract System.Data.Spatial.DbGeometry GetCentroid(System.Data.Spatial.DbGeometry geometryValue);
GetConvexHull(System.Data.Spatial.DbGeometry geometryValue)4991         public abstract System.Data.Spatial.DbGeometry GetConvexHull(System.Data.Spatial.DbGeometry geometryValue);
GetCoordinateSystemId(System.Data.Spatial.DbGeography geographyValue)4992         public abstract int GetCoordinateSystemId(System.Data.Spatial.DbGeography geographyValue);
GetCoordinateSystemId(System.Data.Spatial.DbGeometry geometryValue)4993         public abstract int GetCoordinateSystemId(System.Data.Spatial.DbGeometry geometryValue);
GetDimension(System.Data.Spatial.DbGeography geographyValue)4994         public abstract int GetDimension(System.Data.Spatial.DbGeography geographyValue);
GetDimension(System.Data.Spatial.DbGeometry geometryValue)4995         public abstract int GetDimension(System.Data.Spatial.DbGeometry geometryValue);
GetElementCount(System.Data.Spatial.DbGeography geographyValue)4996         public abstract System.Nullable<int> GetElementCount(System.Data.Spatial.DbGeography geographyValue);
GetElementCount(System.Data.Spatial.DbGeometry geometryValue)4997         public abstract System.Nullable<int> GetElementCount(System.Data.Spatial.DbGeometry geometryValue);
GetElevation(System.Data.Spatial.DbGeography geographyValue)4998         public abstract System.Nullable<double> GetElevation(System.Data.Spatial.DbGeography geographyValue);
GetElevation(System.Data.Spatial.DbGeometry geometryValue)4999         public abstract System.Nullable<double> GetElevation(System.Data.Spatial.DbGeometry geometryValue);
GetEndPoint(System.Data.Spatial.DbGeography geographyValue)5000         public abstract System.Data.Spatial.DbGeography GetEndPoint(System.Data.Spatial.DbGeography geographyValue);
GetEndPoint(System.Data.Spatial.DbGeometry geometryValue)5001         public abstract System.Data.Spatial.DbGeometry GetEndPoint(System.Data.Spatial.DbGeometry geometryValue);
GetEnvelope(System.Data.Spatial.DbGeometry geometryValue)5002         public abstract System.Data.Spatial.DbGeometry GetEnvelope(System.Data.Spatial.DbGeometry geometryValue);
GetExteriorRing(System.Data.Spatial.DbGeometry geometryValue)5003         public abstract System.Data.Spatial.DbGeometry GetExteriorRing(System.Data.Spatial.DbGeometry geometryValue);
GetInteriorRingCount(System.Data.Spatial.DbGeometry geometryValue)5004         public abstract System.Nullable<int> GetInteriorRingCount(System.Data.Spatial.DbGeometry geometryValue);
GetIsClosed(System.Data.Spatial.DbGeography geographyValue)5005         public abstract System.Nullable<bool> GetIsClosed(System.Data.Spatial.DbGeography geographyValue);
GetIsClosed(System.Data.Spatial.DbGeometry geometryValue)5006         public abstract System.Nullable<bool> GetIsClosed(System.Data.Spatial.DbGeometry geometryValue);
GetIsEmpty(System.Data.Spatial.DbGeography geographyValue)5007         public abstract bool GetIsEmpty(System.Data.Spatial.DbGeography geographyValue);
GetIsEmpty(System.Data.Spatial.DbGeometry geometryValue)5008         public abstract bool GetIsEmpty(System.Data.Spatial.DbGeometry geometryValue);
GetIsRing(System.Data.Spatial.DbGeometry geometryValue)5009         public abstract System.Nullable<bool> GetIsRing(System.Data.Spatial.DbGeometry geometryValue);
GetIsSimple(System.Data.Spatial.DbGeometry geometryValue)5010         public abstract bool GetIsSimple(System.Data.Spatial.DbGeometry geometryValue);
GetIsValid(System.Data.Spatial.DbGeometry geometryValue)5011         public abstract bool GetIsValid(System.Data.Spatial.DbGeometry geometryValue);
GetLatitude(System.Data.Spatial.DbGeography geographyValue)5012         public abstract System.Nullable<double> GetLatitude(System.Data.Spatial.DbGeography geographyValue);
GetLength(System.Data.Spatial.DbGeography geographyValue)5013         public abstract System.Nullable<double> GetLength(System.Data.Spatial.DbGeography geographyValue);
GetLength(System.Data.Spatial.DbGeometry geometryValue)5014         public abstract System.Nullable<double> GetLength(System.Data.Spatial.DbGeometry geometryValue);
GetLongitude(System.Data.Spatial.DbGeography geographyValue)5015         public abstract System.Nullable<double> GetLongitude(System.Data.Spatial.DbGeography geographyValue);
GetMeasure(System.Data.Spatial.DbGeography geographyValue)5016         public abstract System.Nullable<double> GetMeasure(System.Data.Spatial.DbGeography geographyValue);
GetMeasure(System.Data.Spatial.DbGeometry geometryValue)5017         public abstract System.Nullable<double> GetMeasure(System.Data.Spatial.DbGeometry geometryValue);
GetPointCount(System.Data.Spatial.DbGeography geographyValue)5018         public abstract System.Nullable<int> GetPointCount(System.Data.Spatial.DbGeography geographyValue);
GetPointCount(System.Data.Spatial.DbGeometry geometryValue)5019         public abstract System.Nullable<int> GetPointCount(System.Data.Spatial.DbGeometry geometryValue);
GetPointOnSurface(System.Data.Spatial.DbGeometry geometryValue)5020         public abstract System.Data.Spatial.DbGeometry GetPointOnSurface(System.Data.Spatial.DbGeometry geometryValue);
GetSpatialTypeName(System.Data.Spatial.DbGeography geographyValue)5021         public abstract string GetSpatialTypeName(System.Data.Spatial.DbGeography geographyValue);
GetSpatialTypeName(System.Data.Spatial.DbGeometry geometryValue)5022         public abstract string GetSpatialTypeName(System.Data.Spatial.DbGeometry geometryValue);
GetStartPoint(System.Data.Spatial.DbGeography geographyValue)5023         public abstract System.Data.Spatial.DbGeography GetStartPoint(System.Data.Spatial.DbGeography geographyValue);
GetStartPoint(System.Data.Spatial.DbGeometry geometryValue)5024         public abstract System.Data.Spatial.DbGeometry GetStartPoint(System.Data.Spatial.DbGeometry geometryValue);
GetXCoordinate(System.Data.Spatial.DbGeometry geometryValue)5025         public abstract System.Nullable<double> GetXCoordinate(System.Data.Spatial.DbGeometry geometryValue);
GetYCoordinate(System.Data.Spatial.DbGeometry geometryValue)5026         public abstract System.Nullable<double> GetYCoordinate(System.Data.Spatial.DbGeometry geometryValue);
InteriorRingAt(System.Data.Spatial.DbGeometry geometryValue, int index)5027         public abstract System.Data.Spatial.DbGeometry InteriorRingAt(System.Data.Spatial.DbGeometry geometryValue, int index);
Intersection(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)5028         public abstract System.Data.Spatial.DbGeography Intersection(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
Intersection(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5029         public abstract System.Data.Spatial.DbGeometry Intersection(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Intersects(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)5030         public abstract bool Intersects(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
Intersects(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5031         public abstract bool Intersects(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Overlaps(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5032         public abstract bool Overlaps(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
PointAt(System.Data.Spatial.DbGeography geographyValue, int index)5033         public abstract System.Data.Spatial.DbGeography PointAt(System.Data.Spatial.DbGeography geographyValue, int index);
PointAt(System.Data.Spatial.DbGeometry geometryValue, int index)5034         public abstract System.Data.Spatial.DbGeometry PointAt(System.Data.Spatial.DbGeometry geometryValue, int index);
Relate(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry, string matrix)5035         public abstract bool Relate(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry, string matrix);
SpatialEquals(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)5036         public abstract bool SpatialEquals(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
SpatialEquals(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5037         public abstract bool SpatialEquals(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
SymmetricDifference(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)5038         public abstract System.Data.Spatial.DbGeography SymmetricDifference(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
SymmetricDifference(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5039         public abstract System.Data.Spatial.DbGeometry SymmetricDifference(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Touches(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5040         public abstract bool Touches(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Union(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography)5041         public abstract System.Data.Spatial.DbGeography Union(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography otherGeography);
Union(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5042         public abstract System.Data.Spatial.DbGeometry Union(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
Within(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)5043         public abstract bool Within(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
5044     }
5045 }
5046 namespace System.Data.SqlClient
5047 {
5048     [System.CLSCompliantAttribute(false)]
5049     public sealed partial class SqlProviderServices : System.Data.Common.DbProviderServices
5050     {
SqlProviderServices()5051         internal SqlProviderServices() { }
5052         public static System.Data.SqlClient.SqlProviderServices SingletonInstance { get { throw null; } }
CreateDbCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree)5053         protected override System.Data.Common.DbCommandDefinition CreateDbCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree) { throw null; }
DbCreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)5054         protected override void DbCreateDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
DbCreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)5055         protected override string DbCreateDatabaseScript(string providerManifestToken, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
DbDatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)5056         protected override bool DbDatabaseExists(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { throw null; }
DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection)5057         protected override void DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
DbGetSpatialServices(string versionHint)5058         protected override System.Data.Spatial.DbSpatialServices DbGetSpatialServices(string versionHint) { throw null; }
GetDbProviderManifest(string versionHint)5059         protected override System.Data.Common.DbProviderManifest GetDbProviderManifest(string versionHint) { throw null; }
GetDbProviderManifestToken(System.Data.Common.DbConnection connection)5060         protected override string GetDbProviderManifestToken(System.Data.Common.DbConnection connection) { throw null; }
GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string versionHint)5061         protected override System.Data.Spatial.DbSpatialDataReader GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string versionHint) { throw null; }
SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value)5062         protected override void SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value) { }
5063     }
5064 }
5065