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.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
20 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
21 namespace System.Data
22 {
23     [System.SerializableAttribute]
24     public sealed partial class EntityCommandCompilationException : System.Data.EntityException
25     {
EntityCommandCompilationException()26         public EntityCommandCompilationException() { }
EntityCommandCompilationException(string message)27         public EntityCommandCompilationException(string message) { }
EntityCommandCompilationException(string message, System.Exception innerException)28         public EntityCommandCompilationException(string message, System.Exception innerException) { }
29     }
30     [System.SerializableAttribute]
31     public sealed partial class EntityCommandExecutionException : System.Data.EntityException
32     {
EntityCommandExecutionException()33         public EntityCommandExecutionException() { }
EntityCommandExecutionException(string message)34         public EntityCommandExecutionException(string message) { }
EntityCommandExecutionException(string message, System.Exception innerException)35         public EntityCommandExecutionException(string message, System.Exception innerException) { }
36     }
37     [System.SerializableAttribute]
38     public partial class EntityException : System.Data.DataException
39     {
EntityException()40         public EntityException() { }
EntityException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)41         protected EntityException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
EntityException(string message)42         public EntityException(string message) { }
EntityException(string message, System.Exception innerException)43         public EntityException(string message, System.Exception innerException) { }
44     }
45     [System.Diagnostics.DebuggerDisplayAttribute("{ConcatKeyValue()}")]
46     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
47     [System.SerializableAttribute]
48     public sealed partial class EntityKey : System.IEquatable<System.Data.EntityKey>
49     {
50         public static readonly System.Data.EntityKey EntityNotValidKey;
51         public static readonly System.Data.EntityKey NoEntitySetKey;
EntityKey()52         public EntityKey() { }
EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>> entityKeyValues)53         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)54         public EntityKey(string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Data.EntityKeyMember> entityKeyValues) { }
EntityKey(string qualifiedEntitySetName, string keyName, object keyValue)55         public EntityKey(string qualifiedEntitySetName, string keyName, object keyValue) { }
56         [System.Runtime.Serialization.DataMemberAttribute]
57         public string EntityContainerName { get { throw null; } set { } }
58         [System.Runtime.Serialization.DataMemberAttribute]
59         public System.Data.EntityKeyMember[] EntityKeyValues { get { throw null; } set { } }
60         [System.Runtime.Serialization.DataMemberAttribute]
61         public string EntitySetName { get { throw null; } set { } }
62         public bool IsTemporary { get { throw null; } }
Equals(System.Data.EntityKey other)63         public bool Equals(System.Data.EntityKey other) { throw null; }
Equals(object obj)64         public override bool Equals(object obj) { throw null; }
GetEntitySet(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace)65         public System.Data.Metadata.Edm.EntitySet GetEntitySet(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace) { throw null; }
GetHashCode()66         public override int GetHashCode() { throw null; }
67         [System.ComponentModel.BrowsableAttribute(false)]
68         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
69         [System.Runtime.Serialization.OnDeserializedAttribute]
OnDeserialized(System.Runtime.Serialization.StreamingContext context)70         public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
71         [System.ComponentModel.BrowsableAttribute(false)]
72         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
73         [System.Runtime.Serialization.OnDeserializingAttribute]
OnDeserializing(System.Runtime.Serialization.StreamingContext context)74         public void OnDeserializing(System.Runtime.Serialization.StreamingContext context) { }
operator ==(System.Data.EntityKey key1, System.Data.EntityKey key2)75         public static bool operator ==(System.Data.EntityKey key1, System.Data.EntityKey key2) { throw null; }
operator !=(System.Data.EntityKey key1, System.Data.EntityKey key2)76         public static bool operator !=(System.Data.EntityKey key1, System.Data.EntityKey key2) { throw null; }
77     }
78     [System.Runtime.Serialization.DataContractAttribute]
79     [System.SerializableAttribute]
80     public partial class EntityKeyMember
81     {
EntityKeyMember()82         public EntityKeyMember() { }
EntityKeyMember(string keyName, object keyValue)83         public EntityKeyMember(string keyName, object keyValue) { }
84         [System.Runtime.Serialization.DataMemberAttribute]
85         public string Key { get { throw null; } set { } }
86         [System.Runtime.Serialization.DataMemberAttribute]
87         public object Value { get { throw null; } set { } }
ToString()88         public override string ToString() { throw null; }
89     }
90     [System.SerializableAttribute]
91     public sealed partial class EntitySqlException : System.Data.EntityException
92     {
EntitySqlException()93         public EntitySqlException() { }
EntitySqlException(string message)94         public EntitySqlException(string message) { }
EntitySqlException(string message, System.Exception innerException)95         public EntitySqlException(string message, System.Exception innerException) { }
96         public int Column { get { throw null; } }
97         public string ErrorContext { get { throw null; } }
98         public string ErrorDescription { get { throw null; } }
99         public int Line { get { throw null; } }
100         [System.Security.SecurityCriticalAttribute]
101         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)102         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
103     }
104     [System.ComponentModel.DataAnnotations.BindableTypeAttribute(IsBindable=false)]
105     [System.FlagsAttribute]
106     public enum EntityState
107     {
108         Added = 4,
109         Deleted = 8,
110         Detached = 1,
111         Modified = 16,
112         Unchanged = 2,
113     }
114     public partial interface IExtendedDataRecord : System.Data.IDataRecord
115     {
116         System.Data.Common.DataRecordInfo DataRecordInfo { get; }
GetDataReader(int i)117         System.Data.Common.DbDataReader GetDataReader(int i);
GetDataRecord(int i)118         System.Data.Common.DbDataRecord GetDataRecord(int i);
119     }
120     [System.SerializableAttribute]
121     public sealed partial class InvalidCommandTreeException : System.Data.DataException
122     {
InvalidCommandTreeException()123         public InvalidCommandTreeException() { }
InvalidCommandTreeException(string message)124         public InvalidCommandTreeException(string message) { }
InvalidCommandTreeException(string message, System.Exception innerException)125         public InvalidCommandTreeException(string message, System.Exception innerException) { }
126     }
127     [System.SerializableAttribute]
128     public sealed partial class MappingException : System.Data.EntityException
129     {
MappingException()130         public MappingException() { }
MappingException(string message)131         public MappingException(string message) { }
MappingException(string message, System.Exception innerException)132         public MappingException(string message, System.Exception innerException) { }
133     }
134     [System.SerializableAttribute]
135     public sealed partial class MetadataException : System.Data.EntityException
136     {
MetadataException()137         public MetadataException() { }
MetadataException(string message)138         public MetadataException(string message) { }
MetadataException(string message, System.Exception innerException)139         public MetadataException(string message, System.Exception innerException) { }
140     }
141     [System.SerializableAttribute]
142     public sealed partial class ObjectNotFoundException : System.Data.DataException
143     {
ObjectNotFoundException()144         public ObjectNotFoundException() { }
ObjectNotFoundException(string message)145         public ObjectNotFoundException(string message) { }
ObjectNotFoundException(string message, System.Exception innerException)146         public ObjectNotFoundException(string message, System.Exception innerException) { }
147     }
148     [System.SerializableAttribute]
149     public sealed partial class OptimisticConcurrencyException : System.Data.UpdateException
150     {
OptimisticConcurrencyException()151         public OptimisticConcurrencyException() { }
OptimisticConcurrencyException(string message)152         public OptimisticConcurrencyException(string message) { }
OptimisticConcurrencyException(string message, System.Exception innerException)153         public OptimisticConcurrencyException(string message, System.Exception innerException) { }
OptimisticConcurrencyException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries)154         public OptimisticConcurrencyException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries) { }
155     }
156     [System.SerializableAttribute]
157     public sealed partial class PropertyConstraintException : System.Data.ConstraintException
158     {
PropertyConstraintException()159         public PropertyConstraintException() { }
PropertyConstraintException(string message)160         public PropertyConstraintException(string message) { }
PropertyConstraintException(string message, System.Exception innerException)161         public PropertyConstraintException(string message, System.Exception innerException) { }
PropertyConstraintException(string message, string propertyName)162         public PropertyConstraintException(string message, string propertyName) { }
PropertyConstraintException(string message, string propertyName, System.Exception innerException)163         public PropertyConstraintException(string message, string propertyName, System.Exception innerException) { }
164         public string PropertyName { get { throw null; } }
165         [System.Security.SecurityCriticalAttribute]
166         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)167         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
168     }
169     [System.SerializableAttribute]
170     public sealed partial class ProviderIncompatibleException : System.Data.EntityException
171     {
ProviderIncompatibleException()172         public ProviderIncompatibleException() { }
ProviderIncompatibleException(string message)173         public ProviderIncompatibleException(string message) { }
ProviderIncompatibleException(string message, System.Exception innerException)174         public ProviderIncompatibleException(string message, System.Exception innerException) { }
175     }
176     [System.SerializableAttribute]
177     public partial class UpdateException : System.Data.DataException
178     {
UpdateException()179         public UpdateException() { }
UpdateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)180         protected UpdateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
UpdateException(string message)181         public UpdateException(string message) { }
UpdateException(string message, System.Exception innerException)182         public UpdateException(string message, System.Exception innerException) { }
UpdateException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries)183         public UpdateException(string message, System.Exception innerException, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> stateEntries) { }
184         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Objects.ObjectStateEntry> StateEntries { get { throw null; } }
185     }
186 }
187 namespace System.Data.Common
188 {
189     public partial class DataRecordInfo
190     {
DataRecordInfo(System.Data.Metadata.Edm.TypeUsage metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo)191         public DataRecordInfo(System.Data.Metadata.Edm.TypeUsage metadata, System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmMember> memberInfo) { }
192         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.FieldMetadata> FieldMetadata { get { throw null; } }
193         public System.Data.Metadata.Edm.TypeUsage RecordType { get { throw null; } }
194     }
195     public partial class DbCommandDefinition
196     {
DbCommandDefinition()197         protected DbCommandDefinition() { }
DbCommandDefinition(System.Data.Common.DbCommand prototype)198         protected DbCommandDefinition(System.Data.Common.DbCommand prototype) { }
CreateCommand()199         public virtual System.Data.Common.DbCommand CreateCommand() { throw null; }
200     }
201     public abstract partial class DbProviderManifest
202     {
203         public static readonly string ConceptualSchemaDefinition;
204         public static readonly string ConceptualSchemaDefinitionVersion3;
205         public static readonly string StoreSchemaDefinition;
206         public static readonly string StoreSchemaDefinitionVersion3;
207         public static readonly string StoreSchemaMapping;
208         public static readonly string StoreSchemaMappingVersion3;
DbProviderManifest()209         protected DbProviderManifest() { }
210         public abstract string NamespaceName { get; }
EscapeLikeArgument(string argument)211         public virtual string EscapeLikeArgument(string argument) { throw null; }
GetDbInformation(string informationType)212         protected abstract System.Xml.XmlReader GetDbInformation(string informationType);
GetEdmType(System.Data.Metadata.Edm.TypeUsage storeType)213         public abstract System.Data.Metadata.Edm.TypeUsage GetEdmType(System.Data.Metadata.Edm.TypeUsage storeType);
GetFacetDescriptions(System.Data.Metadata.Edm.EdmType edmType)214         public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetFacetDescriptions(System.Data.Metadata.Edm.EdmType edmType);
GetInformation(string informationType)215         public System.Xml.XmlReader GetInformation(string informationType) { throw null; }
GetStoreFunctions()216         public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetStoreFunctions();
GetStoreType(System.Data.Metadata.Edm.TypeUsage edmType)217         public abstract System.Data.Metadata.Edm.TypeUsage GetStoreType(System.Data.Metadata.Edm.TypeUsage edmType);
GetStoreTypes()218         public abstract System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetStoreTypes();
SupportsEscapingLikeArgument(out char escapeCharacter)219         public virtual bool SupportsEscapingLikeArgument(out char escapeCharacter) { escapeCharacter = default(char); throw null; }
220     }
221     [System.CLSCompliantAttribute(false)]
222     public abstract partial class DbProviderServices
223     {
DbProviderServices()224         protected DbProviderServices() { }
CreateCommandDefinition(System.Data.Common.CommandTrees.DbCommandTree commandTree)225         public System.Data.Common.DbCommandDefinition CreateCommandDefinition(System.Data.Common.CommandTrees.DbCommandTree commandTree) { throw null; }
CreateCommandDefinition(System.Data.Common.DbCommand prototype)226         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)227         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)228         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)229         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)230         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)231         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)232         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)233         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)234         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)235         protected virtual void DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
DbGetSpatialServices(string manifestToken)236         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)237         public void DeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
GetDbProviderManifest(string manifestToken)238         protected abstract System.Data.Common.DbProviderManifest GetDbProviderManifest(string manifestToken);
GetDbProviderManifestToken(System.Data.Common.DbConnection connection)239         protected abstract string GetDbProviderManifestToken(System.Data.Common.DbConnection connection);
GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken)240         protected virtual System.Data.Spatial.DbSpatialDataReader GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken) { throw null; }
GetProviderFactory(System.Data.Common.DbConnection connection)241         public static System.Data.Common.DbProviderFactory GetProviderFactory(System.Data.Common.DbConnection connection) { throw null; }
GetProviderManifest(string manifestToken)242         public System.Data.Common.DbProviderManifest GetProviderManifest(string manifestToken) { throw null; }
GetProviderManifestToken(System.Data.Common.DbConnection connection)243         public string GetProviderManifestToken(System.Data.Common.DbConnection connection) { throw null; }
GetProviderServices(System.Data.Common.DbConnection connection)244         public static System.Data.Common.DbProviderServices GetProviderServices(System.Data.Common.DbConnection connection) { throw null; }
GetSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken)245         public System.Data.Spatial.DbSpatialDataReader GetSpatialDataReader(System.Data.Common.DbDataReader fromReader, string manifestToken) { throw null; }
GetSpatialServices(string manifestToken)246         public System.Data.Spatial.DbSpatialServices GetSpatialServices(string manifestToken) { throw null; }
SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value)247         protected virtual void SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value) { }
248     }
249     public abstract partial class DbXmlEnabledProviderManifest : System.Data.Common.DbProviderManifest
250     {
DbXmlEnabledProviderManifest(System.Xml.XmlReader reader)251         protected DbXmlEnabledProviderManifest(System.Xml.XmlReader reader) { }
252         public override string NamespaceName { get { throw null; } }
253         protected System.Collections.Generic.Dictionary<string, System.Data.Metadata.Edm.PrimitiveType> StoreTypeNameToEdmPrimitiveType { get { throw null; } }
254         protected System.Collections.Generic.Dictionary<string, System.Data.Metadata.Edm.PrimitiveType> StoreTypeNameToStorePrimitiveType { get { throw null; } }
GetFacetDescriptions(System.Data.Metadata.Edm.EdmType type)255         public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetFacetDescriptions(System.Data.Metadata.Edm.EdmType type) { throw null; }
GetStoreFunctions()256         public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetStoreFunctions() { throw null; }
GetStoreTypes()257         public override System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetStoreTypes() { throw null; }
258     }
259     public partial class EntityRecordInfo : System.Data.Common.DataRecordInfo
260     {
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)261         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>)) { }
262         public System.Data.EntityKey EntityKey { get { throw null; } }
263     }
264     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
265     public partial struct FieldMetadata
266     {
FieldMetadataSystem.Data.Common.FieldMetadata267         public FieldMetadata(int ordinal, System.Data.Metadata.Edm.EdmMember fieldType) { throw null;}
268         public System.Data.Metadata.Edm.EdmMember FieldType { get { throw null; } }
269         public int Ordinal { get { throw null; } }
270     }
271 }
272 namespace System.Data.Common.CommandTrees
273 {
274     public abstract partial class DbAggregate
275     {
DbAggregate()276         internal DbAggregate() { }
277         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
278         public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
279     }
280     public sealed partial class DbAndExpression : System.Data.Common.CommandTrees.DbBinaryExpression
281     {
DbAndExpression()282         internal DbAndExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)283         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)284         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
285     }
286     public sealed partial class DbApplyExpression : System.Data.Common.CommandTrees.DbExpression
287     {
DbApplyExpression()288         internal DbApplyExpression() { }
289         public System.Data.Common.CommandTrees.DbExpressionBinding Apply { get { throw null; } }
290         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)291         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)292         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
293     }
294     public sealed partial class DbArithmeticExpression : System.Data.Common.CommandTrees.DbExpression
295     {
DbArithmeticExpression()296         internal DbArithmeticExpression() { }
297         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)298         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)299         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
300     }
301     public abstract partial class DbBinaryExpression : System.Data.Common.CommandTrees.DbExpression
302     {
DbBinaryExpression()303         internal DbBinaryExpression() { }
304         public System.Data.Common.CommandTrees.DbExpression Left { get { throw null; } }
305         public System.Data.Common.CommandTrees.DbExpression Right { get { throw null; } }
306     }
307     public sealed partial class DbCaseExpression : System.Data.Common.CommandTrees.DbExpression
308     {
DbCaseExpression()309         internal DbCaseExpression() { }
310         public System.Data.Common.CommandTrees.DbExpression Else { get { throw null; } }
311         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Then { get { throw null; } }
312         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> When { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)313         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)314         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
315     }
316     public sealed partial class DbCastExpression : System.Data.Common.CommandTrees.DbUnaryExpression
317     {
DbCastExpression()318         internal DbCastExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)319         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)320         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
321     }
322     public abstract partial class DbCommandTree
323     {
DbCommandTree()324         internal DbCommandTree() { }
325         public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Data.Metadata.Edm.TypeUsage>> Parameters { get { throw null; } }
326     }
327     public sealed partial class DbComparisonExpression : System.Data.Common.CommandTrees.DbBinaryExpression
328     {
DbComparisonExpression()329         internal DbComparisonExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)330         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)331         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
332     }
333     public sealed partial class DbConstantExpression : System.Data.Common.CommandTrees.DbExpression
334     {
DbConstantExpression()335         internal DbConstantExpression() { }
336         public object Value { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)337         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)338         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
339     }
340     public sealed partial class DbCrossJoinExpression : System.Data.Common.CommandTrees.DbExpression
341     {
DbCrossJoinExpression()342         internal DbCrossJoinExpression() { }
343         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpressionBinding> Inputs { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)344         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)345         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
346     }
347     public sealed partial class DbDeleteCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
348     {
DbDeleteCommandTree()349         internal DbDeleteCommandTree() { }
350         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
351     }
352     public sealed partial class DbDerefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
353     {
DbDerefExpression()354         internal DbDerefExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)355         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)356         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
357     }
358     public sealed partial class DbDistinctExpression : System.Data.Common.CommandTrees.DbUnaryExpression
359     {
DbDistinctExpression()360         internal DbDistinctExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)361         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)362         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
363     }
364     public sealed partial class DbElementExpression : System.Data.Common.CommandTrees.DbUnaryExpression
365     {
DbElementExpression()366         internal DbElementExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)367         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)368         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
369     }
370     public sealed partial class DbEntityRefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
371     {
DbEntityRefExpression()372         internal DbEntityRefExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)373         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)374         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
375     }
376     public sealed partial class DbExceptExpression : System.Data.Common.CommandTrees.DbBinaryExpression
377     {
DbExceptExpression()378         internal DbExceptExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)379         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)380         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
381     }
382     public abstract partial class DbExpression
383     {
DbExpression()384         internal DbExpression() { }
385         public System.Data.Common.CommandTrees.DbExpressionKind ExpressionKind { get { throw null; } }
386         public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)387         public abstract void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor);
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)388         public abstract TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor);
389         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Equals(object obj)390         public override bool Equals(object obj) { throw null; }
FromBinary(byte[] value)391         public static System.Data.Common.CommandTrees.DbExpression FromBinary(byte[] value) { throw null; }
FromBoolean(System.Nullable<bool> value)392         public static System.Data.Common.CommandTrees.DbExpression FromBoolean(System.Nullable<bool> value) { throw null; }
FromByte(System.Nullable<byte> value)393         public static System.Data.Common.CommandTrees.DbExpression FromByte(System.Nullable<byte> value) { throw null; }
FromDateTime(System.Nullable<System.DateTime> value)394         public static System.Data.Common.CommandTrees.DbExpression FromDateTime(System.Nullable<System.DateTime> value) { throw null; }
FromDateTimeOffset(System.Nullable<System.DateTimeOffset> value)395         public static System.Data.Common.CommandTrees.DbExpression FromDateTimeOffset(System.Nullable<System.DateTimeOffset> value) { throw null; }
FromDecimal(System.Nullable<decimal> value)396         public static System.Data.Common.CommandTrees.DbExpression FromDecimal(System.Nullable<decimal> value) { throw null; }
FromDouble(System.Nullable<double> value)397         public static System.Data.Common.CommandTrees.DbExpression FromDouble(System.Nullable<double> value) { throw null; }
FromGeography(System.Data.Spatial.DbGeography value)398         public static System.Data.Common.CommandTrees.DbExpression FromGeography(System.Data.Spatial.DbGeography value) { throw null; }
FromGeometry(System.Data.Spatial.DbGeometry value)399         public static System.Data.Common.CommandTrees.DbExpression FromGeometry(System.Data.Spatial.DbGeometry value) { throw null; }
FromGuid(System.Nullable<System.Guid> value)400         public static System.Data.Common.CommandTrees.DbExpression FromGuid(System.Nullable<System.Guid> value) { throw null; }
FromInt16(System.Nullable<short> value)401         public static System.Data.Common.CommandTrees.DbExpression FromInt16(System.Nullable<short> value) { throw null; }
FromInt32(System.Nullable<int> value)402         public static System.Data.Common.CommandTrees.DbExpression FromInt32(System.Nullable<int> value) { throw null; }
FromInt64(System.Nullable<long> value)403         public static System.Data.Common.CommandTrees.DbExpression FromInt64(System.Nullable<long> value) { throw null; }
FromSingle(System.Nullable<float> value)404         public static System.Data.Common.CommandTrees.DbExpression FromSingle(System.Nullable<float> value) { throw null; }
FromString(string value)405         public static System.Data.Common.CommandTrees.DbExpression FromString(string value) { throw null; }
GetHashCode()406         public override int GetHashCode() { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(byte[] value)407         public static implicit operator System.Data.Common.CommandTrees.DbExpression (byte[] value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(System.Data.Spatial.DbGeography value)408         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)409         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)410         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)411         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)412         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)413         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)414         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)415         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)416         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)417         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)418         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)419         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)420         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Nullable<float> value) { throw null; }
operator System.Data.Common.CommandTrees.DbExpression(string value)421         public static implicit operator System.Data.Common.CommandTrees.DbExpression (string value) { throw null; }
422     }
423     public sealed partial class DbExpressionBinding
424     {
DbExpressionBinding()425         internal DbExpressionBinding() { }
426         public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
427         public System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable { get { throw null; } }
428         public string VariableName { get { throw null; } }
429         public System.Data.Metadata.Edm.TypeUsage VariableType { get { throw null; } }
430     }
431     public enum DbExpressionKind
432     {
433         All = 0,
434         And = 1,
435         Any = 2,
436         Case = 3,
437         Cast = 4,
438         Constant = 5,
439         CrossApply = 6,
440         CrossJoin = 7,
441         Deref = 8,
442         Distinct = 9,
443         Divide = 10,
444         Element = 11,
445         EntityRef = 12,
446         Equals = 13,
447         Except = 14,
448         Filter = 15,
449         FullOuterJoin = 16,
450         Function = 17,
451         GreaterThan = 18,
452         GreaterThanOrEquals = 19,
453         GroupBy = 20,
454         InnerJoin = 21,
455         Intersect = 22,
456         IsEmpty = 23,
457         IsNull = 24,
458         IsOf = 25,
459         IsOfOnly = 26,
460         Lambda = 57,
461         LeftOuterJoin = 27,
462         LessThan = 28,
463         LessThanOrEquals = 29,
464         Like = 30,
465         Limit = 31,
466         Minus = 32,
467         Modulo = 33,
468         Multiply = 34,
469         NewInstance = 35,
470         Not = 36,
471         NotEquals = 37,
472         Null = 38,
473         OfType = 39,
474         OfTypeOnly = 40,
475         Or = 41,
476         OuterApply = 42,
477         ParameterReference = 43,
478         Plus = 44,
479         Project = 45,
480         Property = 46,
481         Ref = 47,
482         RefKey = 48,
483         RelationshipNavigation = 49,
484         Scan = 50,
485         Skip = 51,
486         Sort = 52,
487         Treat = 53,
488         UnaryMinus = 54,
489         UnionAll = 55,
490         VariableReference = 56,
491     }
492     public abstract partial class DbExpressionVisitor
493     {
DbExpressionVisitor()494         protected DbExpressionVisitor() { }
Visit(System.Data.Common.CommandTrees.DbAndExpression expression)495         public abstract void Visit(System.Data.Common.CommandTrees.DbAndExpression expression);
Visit(System.Data.Common.CommandTrees.DbApplyExpression expression)496         public abstract void Visit(System.Data.Common.CommandTrees.DbApplyExpression expression);
Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression)497         public abstract void Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression);
Visit(System.Data.Common.CommandTrees.DbCaseExpression expression)498         public abstract void Visit(System.Data.Common.CommandTrees.DbCaseExpression expression);
Visit(System.Data.Common.CommandTrees.DbCastExpression expression)499         public abstract void Visit(System.Data.Common.CommandTrees.DbCastExpression expression);
Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression)500         public abstract void Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression);
Visit(System.Data.Common.CommandTrees.DbConstantExpression expression)501         public abstract void Visit(System.Data.Common.CommandTrees.DbConstantExpression expression);
Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression)502         public abstract void Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbDerefExpression expression)503         public abstract void Visit(System.Data.Common.CommandTrees.DbDerefExpression expression);
Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression)504         public abstract void Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression);
Visit(System.Data.Common.CommandTrees.DbElementExpression expression)505         public abstract void Visit(System.Data.Common.CommandTrees.DbElementExpression expression);
Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression)506         public abstract void Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbExceptExpression expression)507         public abstract void Visit(System.Data.Common.CommandTrees.DbExceptExpression expression);
Visit(System.Data.Common.CommandTrees.DbExpression expression)508         public abstract void Visit(System.Data.Common.CommandTrees.DbExpression expression);
Visit(System.Data.Common.CommandTrees.DbFilterExpression expression)509         public abstract void Visit(System.Data.Common.CommandTrees.DbFilterExpression expression);
Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression)510         public abstract void Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression);
Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression)511         public abstract void Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression);
Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression)512         public abstract void Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression)513         public abstract void Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression)514         public abstract void Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression)515         public abstract void Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression);
Visit(System.Data.Common.CommandTrees.DbJoinExpression expression)516         public abstract void Visit(System.Data.Common.CommandTrees.DbJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression)517         public virtual void Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { }
Visit(System.Data.Common.CommandTrees.DbLikeExpression expression)518         public abstract void Visit(System.Data.Common.CommandTrees.DbLikeExpression expression);
Visit(System.Data.Common.CommandTrees.DbLimitExpression expression)519         public abstract void Visit(System.Data.Common.CommandTrees.DbLimitExpression expression);
Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression)520         public abstract void Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression);
Visit(System.Data.Common.CommandTrees.DbNotExpression expression)521         public abstract void Visit(System.Data.Common.CommandTrees.DbNotExpression expression);
Visit(System.Data.Common.CommandTrees.DbNullExpression expression)522         public abstract void Visit(System.Data.Common.CommandTrees.DbNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression)523         public abstract void Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression);
Visit(System.Data.Common.CommandTrees.DbOrExpression expression)524         public abstract void Visit(System.Data.Common.CommandTrees.DbOrExpression expression);
Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression)525         public abstract void Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression);
Visit(System.Data.Common.CommandTrees.DbProjectExpression expression)526         public abstract void Visit(System.Data.Common.CommandTrees.DbProjectExpression expression);
Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression)527         public abstract void Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression);
Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression)528         public abstract void Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefExpression expression)529         public abstract void Visit(System.Data.Common.CommandTrees.DbRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression)530         public abstract void Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression);
Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression)531         public abstract void Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression);
Visit(System.Data.Common.CommandTrees.DbScanExpression expression)532         public abstract void Visit(System.Data.Common.CommandTrees.DbScanExpression expression);
Visit(System.Data.Common.CommandTrees.DbSkipExpression expression)533         public abstract void Visit(System.Data.Common.CommandTrees.DbSkipExpression expression);
Visit(System.Data.Common.CommandTrees.DbSortExpression expression)534         public abstract void Visit(System.Data.Common.CommandTrees.DbSortExpression expression);
Visit(System.Data.Common.CommandTrees.DbTreatExpression expression)535         public abstract void Visit(System.Data.Common.CommandTrees.DbTreatExpression expression);
Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression)536         public abstract void Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression);
Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression)537         public abstract void Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression);
538     }
539     public abstract partial class DbExpressionVisitor<TResultType>
540     {
DbExpressionVisitor()541         protected DbExpressionVisitor() { }
Visit(System.Data.Common.CommandTrees.DbAndExpression expression)542         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbAndExpression expression);
Visit(System.Data.Common.CommandTrees.DbApplyExpression expression)543         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbApplyExpression expression);
Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression)544         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression);
Visit(System.Data.Common.CommandTrees.DbCaseExpression expression)545         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCaseExpression expression);
Visit(System.Data.Common.CommandTrees.DbCastExpression expression)546         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCastExpression expression);
Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression)547         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression);
Visit(System.Data.Common.CommandTrees.DbConstantExpression expression)548         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbConstantExpression expression);
Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression)549         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbDerefExpression expression)550         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbDerefExpression expression);
Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression)551         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression);
Visit(System.Data.Common.CommandTrees.DbElementExpression expression)552         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbElementExpression expression);
Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression)553         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbExceptExpression expression)554         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbExceptExpression expression);
Visit(System.Data.Common.CommandTrees.DbExpression expression)555         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbExpression expression);
Visit(System.Data.Common.CommandTrees.DbFilterExpression expression)556         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbFilterExpression expression);
Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression)557         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression);
Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression)558         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression);
Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression)559         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression)560         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression)561         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression)562         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression);
Visit(System.Data.Common.CommandTrees.DbJoinExpression expression)563         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbJoinExpression expression);
Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression)564         public virtual TResultType Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLikeExpression expression)565         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbLikeExpression expression);
Visit(System.Data.Common.CommandTrees.DbLimitExpression expression)566         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbLimitExpression expression);
Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression)567         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression);
Visit(System.Data.Common.CommandTrees.DbNotExpression expression)568         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNotExpression expression);
Visit(System.Data.Common.CommandTrees.DbNullExpression expression)569         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbNullExpression expression);
Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression)570         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression);
Visit(System.Data.Common.CommandTrees.DbOrExpression expression)571         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbOrExpression expression);
Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression)572         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression);
Visit(System.Data.Common.CommandTrees.DbProjectExpression expression)573         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbProjectExpression expression);
Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression)574         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression);
Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression)575         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefExpression expression)576         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRefExpression expression);
Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression)577         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression);
Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression)578         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression);
Visit(System.Data.Common.CommandTrees.DbScanExpression expression)579         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbScanExpression expression);
Visit(System.Data.Common.CommandTrees.DbSkipExpression expression)580         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbSkipExpression expression);
Visit(System.Data.Common.CommandTrees.DbSortExpression expression)581         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbSortExpression expression);
Visit(System.Data.Common.CommandTrees.DbTreatExpression expression)582         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbTreatExpression expression);
Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression)583         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression);
Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression)584         public abstract TResultType Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression);
585     }
586     public sealed partial class DbFilterExpression : System.Data.Common.CommandTrees.DbExpression
587     {
DbFilterExpression()588         internal DbFilterExpression() { }
589         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
590         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)591         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)592         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
593     }
594     public sealed partial class DbFunctionAggregate : System.Data.Common.CommandTrees.DbAggregate
595     {
DbFunctionAggregate()596         internal DbFunctionAggregate() { }
597         public bool Distinct { get { throw null; } }
598         public System.Data.Metadata.Edm.EdmFunction Function { get { throw null; } }
599     }
600     public sealed partial class DbFunctionCommandTree : System.Data.Common.CommandTrees.DbCommandTree
601     {
DbFunctionCommandTree()602         internal DbFunctionCommandTree() { }
603         public System.Data.Metadata.Edm.EdmFunction EdmFunction { get { throw null; } }
604         public System.Data.Metadata.Edm.TypeUsage ResultType { get { throw null; } }
605     }
606     public sealed partial class DbFunctionExpression : System.Data.Common.CommandTrees.DbExpression
607     {
DbFunctionExpression()608         internal DbFunctionExpression() { }
609         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
610         public System.Data.Metadata.Edm.EdmFunction Function { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)611         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)612         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
613     }
614     public sealed partial class DbGroupAggregate : System.Data.Common.CommandTrees.DbAggregate
615     {
DbGroupAggregate()616         internal DbGroupAggregate() { }
617     }
618     public sealed partial class DbGroupByExpression : System.Data.Common.CommandTrees.DbExpression
619     {
DbGroupByExpression()620         internal DbGroupByExpression() { }
621         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbAggregate> Aggregates { get { throw null; } }
622         public System.Data.Common.CommandTrees.DbGroupExpressionBinding Input { get { throw null; } }
623         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Keys { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)624         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)625         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
626     }
627     public sealed partial class DbGroupExpressionBinding
628     {
DbGroupExpressionBinding()629         internal DbGroupExpressionBinding() { }
630         public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
631         public System.Data.Common.CommandTrees.DbGroupAggregate GroupAggregate { get { throw null; } }
632         public System.Data.Common.CommandTrees.DbVariableReferenceExpression GroupVariable { get { throw null; } }
633         public string GroupVariableName { get { throw null; } }
634         public System.Data.Metadata.Edm.TypeUsage GroupVariableType { get { throw null; } }
635         public System.Data.Common.CommandTrees.DbVariableReferenceExpression Variable { get { throw null; } }
636         public string VariableName { get { throw null; } }
637         public System.Data.Metadata.Edm.TypeUsage VariableType { get { throw null; } }
638     }
639     public sealed partial class DbInsertCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
640     {
DbInsertCommandTree()641         internal DbInsertCommandTree() { }
642         public System.Data.Common.CommandTrees.DbExpression Returning { get { throw null; } }
643         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbModificationClause> SetClauses { get { throw null; } }
644     }
645     public sealed partial class DbIntersectExpression : System.Data.Common.CommandTrees.DbBinaryExpression
646     {
DbIntersectExpression()647         internal DbIntersectExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)648         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)649         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
650     }
651     public sealed partial class DbIsEmptyExpression : System.Data.Common.CommandTrees.DbUnaryExpression
652     {
DbIsEmptyExpression()653         internal DbIsEmptyExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)654         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)655         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
656     }
657     public sealed partial class DbIsNullExpression : System.Data.Common.CommandTrees.DbUnaryExpression
658     {
DbIsNullExpression()659         internal DbIsNullExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)660         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)661         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
662     }
663     public sealed partial class DbIsOfExpression : System.Data.Common.CommandTrees.DbUnaryExpression
664     {
DbIsOfExpression()665         internal DbIsOfExpression() { }
666         public System.Data.Metadata.Edm.TypeUsage OfType { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)667         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)668         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
669     }
670     public sealed partial class DbJoinExpression : System.Data.Common.CommandTrees.DbExpression
671     {
DbJoinExpression()672         internal DbJoinExpression() { }
673         public System.Data.Common.CommandTrees.DbExpression JoinCondition { get { throw null; } }
674         public System.Data.Common.CommandTrees.DbExpressionBinding Left { get { throw null; } }
675         public System.Data.Common.CommandTrees.DbExpressionBinding Right { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)676         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)677         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
678     }
679     public sealed partial class DbLambda
680     {
DbLambda()681         internal DbLambda() { }
682         public System.Data.Common.CommandTrees.DbExpression Body { get { throw null; } }
683         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)684         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)685         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)686         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)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.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)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.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)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.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)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.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)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.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)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.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)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.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)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.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)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.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)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.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)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.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)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.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)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.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)700         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)701         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; }
702     }
703     public sealed partial class DbLambdaExpression : System.Data.Common.CommandTrees.DbExpression
704     {
DbLambdaExpression()705         internal DbLambdaExpression() { }
706         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
707         public System.Data.Common.CommandTrees.DbLambda Lambda { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)708         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)709         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
710     }
711     public sealed partial class DbLikeExpression : System.Data.Common.CommandTrees.DbExpression
712     {
DbLikeExpression()713         internal DbLikeExpression() { }
714         public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
715         public System.Data.Common.CommandTrees.DbExpression Escape { get { throw null; } }
716         public System.Data.Common.CommandTrees.DbExpression Pattern { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)717         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)718         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
719     }
720     public sealed partial class DbLimitExpression : System.Data.Common.CommandTrees.DbExpression
721     {
DbLimitExpression()722         internal DbLimitExpression() { }
723         public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
724         public System.Data.Common.CommandTrees.DbExpression Limit { get { throw null; } }
725         public bool WithTies { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)726         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)727         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
728     }
729     public abstract partial class DbModificationClause
730     {
DbModificationClause()731         internal DbModificationClause() { }
732     }
733     public abstract partial class DbModificationCommandTree : System.Data.Common.CommandTrees.DbCommandTree
734     {
DbModificationCommandTree()735         internal DbModificationCommandTree() { }
736         public System.Data.Common.CommandTrees.DbExpressionBinding Target { get { throw null; } }
737     }
738     public sealed partial class DbNewInstanceExpression : System.Data.Common.CommandTrees.DbExpression
739     {
DbNewInstanceExpression()740         internal DbNewInstanceExpression() { }
741         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbExpression> Arguments { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)742         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)743         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
744     }
745     public sealed partial class DbNotExpression : System.Data.Common.CommandTrees.DbUnaryExpression
746     {
DbNotExpression()747         internal DbNotExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)748         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)749         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
750     }
751     public sealed partial class DbNullExpression : System.Data.Common.CommandTrees.DbExpression
752     {
DbNullExpression()753         internal DbNullExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)754         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)755         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
756     }
757     public sealed partial class DbOfTypeExpression : System.Data.Common.CommandTrees.DbUnaryExpression
758     {
DbOfTypeExpression()759         internal DbOfTypeExpression() { }
760         public System.Data.Metadata.Edm.TypeUsage OfType { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)761         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)762         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
763     }
764     public sealed partial class DbOrExpression : System.Data.Common.CommandTrees.DbBinaryExpression
765     {
DbOrExpression()766         internal DbOrExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)767         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)768         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
769     }
770     public sealed partial class DbParameterReferenceExpression : System.Data.Common.CommandTrees.DbExpression
771     {
DbParameterReferenceExpression()772         internal DbParameterReferenceExpression() { }
773         public string ParameterName { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)774         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)775         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
776     }
777     public sealed partial class DbProjectExpression : System.Data.Common.CommandTrees.DbExpression
778     {
DbProjectExpression()779         internal DbProjectExpression() { }
780         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
781         public System.Data.Common.CommandTrees.DbExpression Projection { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)782         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)783         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
784     }
785     public sealed partial class DbPropertyExpression : System.Data.Common.CommandTrees.DbExpression
786     {
DbPropertyExpression()787         internal DbPropertyExpression() { }
788         public System.Data.Common.CommandTrees.DbExpression Instance { get { throw null; } }
789         public System.Data.Metadata.Edm.EdmMember Property { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)790         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)791         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)792         public static implicit operator System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> (System.Data.Common.CommandTrees.DbPropertyExpression value) { throw null; }
ToKeyValuePair()793         public System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> ToKeyValuePair() { throw null; }
794     }
795     public sealed partial class DbQuantifierExpression : System.Data.Common.CommandTrees.DbExpression
796     {
DbQuantifierExpression()797         internal DbQuantifierExpression() { }
798         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
799         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)800         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)801         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
802     }
803     public sealed partial class DbQueryCommandTree : System.Data.Common.CommandTrees.DbCommandTree
804     {
DbQueryCommandTree()805         internal DbQueryCommandTree() { }
806         public System.Data.Common.CommandTrees.DbExpression Query { get { throw null; } }
807     }
808     public sealed partial class DbRefExpression : System.Data.Common.CommandTrees.DbUnaryExpression
809     {
DbRefExpression()810         internal DbRefExpression() { }
811         public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)812         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)813         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
814     }
815     public sealed partial class DbRefKeyExpression : System.Data.Common.CommandTrees.DbUnaryExpression
816     {
DbRefKeyExpression()817         internal DbRefKeyExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)818         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)819         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
820     }
821     public sealed partial class DbRelationshipNavigationExpression : System.Data.Common.CommandTrees.DbExpression
822     {
DbRelationshipNavigationExpression()823         internal DbRelationshipNavigationExpression() { }
824         public System.Data.Metadata.Edm.RelationshipEndMember NavigateFrom { get { throw null; } }
825         public System.Data.Metadata.Edm.RelationshipEndMember NavigateTo { get { throw null; } }
826         public System.Data.Common.CommandTrees.DbExpression NavigationSource { get { throw null; } }
827         public System.Data.Metadata.Edm.RelationshipType Relationship { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)828         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)829         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
830     }
831     public sealed partial class DbScanExpression : System.Data.Common.CommandTrees.DbExpression
832     {
DbScanExpression()833         internal DbScanExpression() { }
834         public System.Data.Metadata.Edm.EntitySetBase Target { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)835         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)836         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
837     }
838     public sealed partial class DbSetClause : System.Data.Common.CommandTrees.DbModificationClause
839     {
DbSetClause()840         internal DbSetClause() { }
841         public System.Data.Common.CommandTrees.DbExpression Property { get { throw null; } }
842         public System.Data.Common.CommandTrees.DbExpression Value { get { throw null; } }
843     }
844     public sealed partial class DbSkipExpression : System.Data.Common.CommandTrees.DbExpression
845     {
DbSkipExpression()846         internal DbSkipExpression() { }
847         public System.Data.Common.CommandTrees.DbExpression Count { get { throw null; } }
848         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
849         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> SortOrder { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)850         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)851         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
852     }
853     public sealed partial class DbSortClause
854     {
DbSortClause()855         internal DbSortClause() { }
856         public bool Ascending { get { throw null; } }
857         public string Collation { get { throw null; } }
858         public System.Data.Common.CommandTrees.DbExpression Expression { get { throw null; } }
859     }
860     public sealed partial class DbSortExpression : System.Data.Common.CommandTrees.DbExpression
861     {
DbSortExpression()862         internal DbSortExpression() { }
863         public System.Data.Common.CommandTrees.DbExpressionBinding Input { get { throw null; } }
864         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbSortClause> SortOrder { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)865         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)866         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
867     }
868     public sealed partial class DbTreatExpression : System.Data.Common.CommandTrees.DbUnaryExpression
869     {
DbTreatExpression()870         internal DbTreatExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)871         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)872         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
873     }
874     public abstract partial class DbUnaryExpression : System.Data.Common.CommandTrees.DbExpression
875     {
DbUnaryExpression()876         internal DbUnaryExpression() { }
877         public System.Data.Common.CommandTrees.DbExpression Argument { get { throw null; } }
878     }
879     public sealed partial class DbUnionAllExpression : System.Data.Common.CommandTrees.DbBinaryExpression
880     {
DbUnionAllExpression()881         internal DbUnionAllExpression() { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)882         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)883         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
884     }
885     public sealed partial class DbUpdateCommandTree : System.Data.Common.CommandTrees.DbModificationCommandTree
886     {
DbUpdateCommandTree()887         internal DbUpdateCommandTree() { }
888         public System.Data.Common.CommandTrees.DbExpression Predicate { get { throw null; } }
889         public System.Data.Common.CommandTrees.DbExpression Returning { get { throw null; } }
890         public System.Collections.Generic.IList<System.Data.Common.CommandTrees.DbModificationClause> SetClauses { get { throw null; } }
891     }
892     public sealed partial class DbVariableReferenceExpression : System.Data.Common.CommandTrees.DbExpression
893     {
DbVariableReferenceExpression()894         internal DbVariableReferenceExpression() { }
895         public string VariableName { get { throw null; } }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor)896         public override void Accept(System.Data.Common.CommandTrees.DbExpressionVisitor visitor) { }
Accept(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor)897         public override TResultType Accept<TResultType>(System.Data.Common.CommandTrees.DbExpressionVisitor<TResultType> visitor) { throw null; }
898     }
899     public partial class DefaultExpressionVisitor : System.Data.Common.CommandTrees.DbExpressionVisitor<System.Data.Common.CommandTrees.DbExpression>
900     {
DefaultExpressionVisitor()901         protected DefaultExpressionVisitor() { }
OnEnterScope(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> scopeVariables)902         protected virtual void OnEnterScope(System.Collections.Generic.IEnumerable<System.Data.Common.CommandTrees.DbVariableReferenceExpression> scopeVariables) { }
OnExitScope()903         protected virtual void OnExitScope() { }
OnExpressionReplaced(System.Data.Common.CommandTrees.DbExpression oldExpression, System.Data.Common.CommandTrees.DbExpression newExpression)904         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)905         protected virtual void OnVariableRebound(System.Data.Common.CommandTrees.DbVariableReferenceExpression fromVarRef, System.Data.Common.CommandTrees.DbVariableReferenceExpression toVarRef) { }
Visit(System.Data.Common.CommandTrees.DbAndExpression expression)906         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbAndExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbApplyExpression expression)907         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbApplyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression)908         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbArithmeticExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbCaseExpression expression)909         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCaseExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbCastExpression expression)910         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCastExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression)911         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbComparisonExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbConstantExpression expression)912         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbConstantExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression)913         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbCrossJoinExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbDerefExpression expression)914         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbDerefExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression)915         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbDistinctExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbElementExpression expression)916         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbElementExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression)917         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbEntityRefExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbExceptExpression expression)918         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbExceptExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbExpression expression)919         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbFilterExpression expression)920         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbFilterExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression)921         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbFunctionExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression)922         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbGroupByExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression)923         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIntersectExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression)924         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsEmptyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression)925         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsNullExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression)926         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbIsOfExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbJoinExpression expression)927         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbJoinExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression)928         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLambdaExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLikeExpression expression)929         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLikeExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbLimitExpression expression)930         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbLimitExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression)931         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNewInstanceExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbNotExpression expression)932         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNotExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbNullExpression expression)933         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbNullExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression)934         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbOfTypeExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbOrExpression expression)935         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbOrExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression)936         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbParameterReferenceExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbProjectExpression expression)937         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbProjectExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression)938         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbPropertyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression)939         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbQuantifierExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbRefExpression expression)940         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRefExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression)941         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRefKeyExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression)942         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbRelationshipNavigationExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbScanExpression expression)943         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbScanExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbSkipExpression expression)944         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbSkipExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbSortExpression expression)945         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbSortExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbTreatExpression expression)946         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbTreatExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression)947         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbUnionAllExpression expression) { throw null; }
Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression)948         public override System.Data.Common.CommandTrees.DbExpression Visit(System.Data.Common.CommandTrees.DbVariableReferenceExpression expression) { throw null; }
VisitAggregate(System.Data.Common.CommandTrees.DbAggregate aggregate)949         protected virtual System.Data.Common.CommandTrees.DbAggregate VisitAggregate(System.Data.Common.CommandTrees.DbAggregate aggregate) { throw null; }
VisitEntitySet(System.Data.Metadata.Edm.EntitySetBase entitySet)950         protected virtual System.Data.Metadata.Edm.EntitySetBase VisitEntitySet(System.Data.Metadata.Edm.EntitySetBase entitySet) { throw null; }
VisitExpression(System.Data.Common.CommandTrees.DbExpression expression)951         protected virtual System.Data.Common.CommandTrees.DbExpression VisitExpression(System.Data.Common.CommandTrees.DbExpression expression) { throw null; }
VisitExpressionBinding(System.Data.Common.CommandTrees.DbExpressionBinding binding)952         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)953         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)954         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)955         protected virtual System.Data.Metadata.Edm.EdmFunction VisitFunction(System.Data.Metadata.Edm.EdmFunction functionMetadata) { throw null; }
VisitFunctionAggregate(System.Data.Common.CommandTrees.DbFunctionAggregate aggregate)956         protected virtual System.Data.Common.CommandTrees.DbFunctionAggregate VisitFunctionAggregate(System.Data.Common.CommandTrees.DbFunctionAggregate aggregate) { throw null; }
VisitGroupAggregate(System.Data.Common.CommandTrees.DbGroupAggregate aggregate)957         protected virtual System.Data.Common.CommandTrees.DbGroupAggregate VisitGroupAggregate(System.Data.Common.CommandTrees.DbGroupAggregate aggregate) { throw null; }
VisitGroupExpressionBinding(System.Data.Common.CommandTrees.DbGroupExpressionBinding binding)958         protected virtual System.Data.Common.CommandTrees.DbGroupExpressionBinding VisitGroupExpressionBinding(System.Data.Common.CommandTrees.DbGroupExpressionBinding binding) { throw null; }
VisitLambda(System.Data.Common.CommandTrees.DbLambda lambda)959         protected virtual System.Data.Common.CommandTrees.DbLambda VisitLambda(System.Data.Common.CommandTrees.DbLambda lambda) { throw null; }
VisitSortClause(System.Data.Common.CommandTrees.DbSortClause clause)960         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)961         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)962         protected virtual System.Data.Metadata.Edm.EdmType VisitType(System.Data.Metadata.Edm.EdmType type) { throw null; }
VisitTypeUsage(System.Data.Metadata.Edm.TypeUsage type)963         protected virtual System.Data.Metadata.Edm.TypeUsage VisitTypeUsage(System.Data.Metadata.Edm.TypeUsage type) { throw null; }
964     }
965 }
966 namespace System.Data.Common.CommandTrees.ExpressionBuilder
967 {
968     public static partial class DbExpressionBuilder
969     {
970         public static System.Data.Common.CommandTrees.DbConstantExpression False { get { throw null; } }
971         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)972         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)973         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)974         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)975         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)976         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)977         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)978         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)979         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)980         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)981         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)982         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)983         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)984         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)985         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)986         public static System.Data.Common.CommandTrees.DbConstantExpression Constant(this System.Data.Metadata.Edm.TypeUsage constantType, object value) { throw null; }
Constant(object value)987         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)988         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)989         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)990         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)991         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)992         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)993         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)994         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)995         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)996         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)997         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)998         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)999         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)1000         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)1001         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)1002         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)1003         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)1004         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)1005         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)1006         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)1007         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)1008         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)1009         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)1010         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)1011         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)1012         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)1013         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)1014         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)1015         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)1016         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)1017         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)1018         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)1019         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)1020         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)1021         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)1022         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)1023         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)1024         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)1025         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)1026         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)1027         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)1028         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)1029         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)1030         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)1031         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)1032         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)1033         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)1034         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)1035         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)1036         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)1037         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)1038         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)1039         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)1040         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)1041         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)1042         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)1043         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)1044         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)1045         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)1046         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)1047         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)1048         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)1049         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)1050         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)1051         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)1052         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)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, 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)1054         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)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, 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)1056         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)1057         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)1058         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)1059         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)1060         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)1061         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)1062         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)1063         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)1064         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)1065         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)1066         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)1067         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)1068         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)1069         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)1070         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)1071         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)1072         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)1073         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)1074         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)1075         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)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, 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)1077         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)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, string collation) { throw null; }
ToSortClause(this System.Data.Common.CommandTrees.DbExpression key)1079         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)1080         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)1081         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)1082         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)1083         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)1084         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)1085         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)1086         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)1087         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)1088         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; }
1089     }
1090     public static partial class EdmFunctions
1091     {
Abs(this System.Data.Common.CommandTrees.DbExpression value)1092         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)1093         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)1094         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)1095         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)1096         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)1097         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)1098         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)1099         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)1100         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)1101         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)1102         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)1103         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)1104         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)1105         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)1106         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)1107         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)1108         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)1109         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)1110         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)1111         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)1112         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)1113         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()1114         public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentDateTime() { throw null; }
CurrentDateTimeOffset()1115         public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentDateTimeOffset() { throw null; }
CurrentUtcDateTime()1116         public static System.Data.Common.CommandTrees.DbFunctionExpression CurrentUtcDateTime() { throw null; }
Day(this System.Data.Common.CommandTrees.DbExpression dateValue)1117         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)1118         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)1119         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)1120         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)1121         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)1122         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)1123         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)1124         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)1125         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)1126         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)1127         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)1128         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)1129         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)1130         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)1131         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)1132         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)1133         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)1134         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)1135         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)1136         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)1137         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)1138         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)1139         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)1140         public static System.Data.Common.CommandTrees.DbFunctionExpression Month(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
NewGuid()1141         public static System.Data.Common.CommandTrees.DbFunctionExpression NewGuid() { throw null; }
Power(this System.Data.Common.CommandTrees.DbExpression baseArgument, System.Data.Common.CommandTrees.DbExpression exponent)1142         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)1143         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)1144         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)1145         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)1146         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)1147         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)1148         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)1149         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)1150         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)1151         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)1152         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)1153         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)1154         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)1155         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)1156         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)1157         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)1158         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)1159         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)1160         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)1161         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)1162         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)1163         public static System.Data.Common.CommandTrees.DbFunctionExpression Year(this System.Data.Common.CommandTrees.DbExpression dateValue) { throw null; }
1164     }
1165     public sealed partial class Row
1166     {
Row(System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression> columnValue, params System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>[] columnValues)1167         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)1168         public static implicit operator System.Data.Common.CommandTrees.DbExpression (System.Data.Common.CommandTrees.ExpressionBuilder.Row row) { throw null; }
ToExpression()1169         public System.Data.Common.CommandTrees.DbNewInstanceExpression ToExpression() { throw null; }
1170     }
1171 }
1172 namespace System.Data.Common.CommandTrees.ExpressionBuilder.Spatial
1173 {
1174     public static partial class SpatialEdmFunctions
1175     {
Area(this System.Data.Common.CommandTrees.DbExpression spatialValue)1176         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)1177         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)1178         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)1179         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)1180         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)1181         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)1182         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)1183         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)1184         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)1185         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)1186         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)1187         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)1188         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)1189         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)1190         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)1191         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)1192         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)1193         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)1194         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)1195         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)1196         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)1197         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)1198         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)1199         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)1200         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)1201         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)1202         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)1203         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)1204         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)1205         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)1206         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)1207         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)1208         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)1209         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)1210         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)1211         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)1212         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)1213         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)1214         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)1215         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)1216         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)1217         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)1218         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)1219         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)1220         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)1221         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)1222         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)1223         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)1224         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)1225         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)1226         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)1227         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)1228         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)1229         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)1230         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)1231         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)1232         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)1233         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)1234         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)1235         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)1236         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)1237         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)1238         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)1239         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)1240         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)1241         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)1242         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)1243         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)1244         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)1245         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)1246         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)1247         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)1248         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)1249         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)1250         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)1251         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)1252         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)1253         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)1254         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)1255         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)1256         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)1257         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)1258         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)1259         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)1260         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)1261         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)1262         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)1263         public static System.Data.Common.CommandTrees.DbFunctionExpression YCoordinate(this System.Data.Common.CommandTrees.DbExpression geometryValue) { throw null; }
1264     }
1265 }
1266 namespace System.Data.Common.EntitySql
1267 {
1268     public sealed partial class EntitySqlParser
1269     {
EntitySqlParser()1270         internal EntitySqlParser() { }
Parse(string query, params System.Data.Common.CommandTrees.DbParameterReferenceExpression[] parameters)1271         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)1272         public System.Data.Common.CommandTrees.DbLambda ParseLambda(string query, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables) { throw null; }
1273     }
1274     public sealed partial class FunctionDefinition
1275     {
FunctionDefinition()1276         internal FunctionDefinition() { }
1277         public int EndPosition { get { throw null; } }
1278         public System.Data.Common.CommandTrees.DbLambda Lambda { get { throw null; } }
1279         public string Name { get { throw null; } }
1280         public int StartPosition { get { throw null; } }
1281     }
1282     public sealed partial class ParseResult
1283     {
ParseResult()1284         internal ParseResult() { }
1285         public System.Data.Common.CommandTrees.DbCommandTree CommandTree { get { throw null; } }
1286         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Common.EntitySql.FunctionDefinition> FunctionDefinitions { get { throw null; } }
1287     }
1288 }
1289 namespace System.Data.Entity
1290 {
1291     public static partial class Strings
1292     {
1293         public static string ADP_ClosedDataReaderError { get { throw null; } }
1294         public static string ADP_GetSchemaTableIsNotSupported { get { throw null; } }
1295         public static string ADP_ImplicitlyClosedDataReaderError { get { throw null; } }
1296         public static string ADP_InvalidDataDirectory { get { throw null; } }
1297         public static string ADP_InvalidDataReaderFieldCountForScalarType { get { throw null; } }
1298         public static string ADP_InvalidDataReaderUnableToDetermineType { get { throw null; } }
1299         public static string ADP_InvalidMultipartNameDelimiterUsage { get { throw null; } }
1300         public static string ADP_KeysRequiredForNesting { get { throw null; } }
1301         public static string ADP_MustUseSequentialAccess { get { throw null; } }
1302         public static string ADP_NoData { get { throw null; } }
1303         public static string ADP_ProviderDoesNotSupportCommandTrees { get { throw null; } }
1304         public static string AllElementsMustBeInSchema { get { throw null; } }
1305         public static string AmbiguousFunctionArguments { get { throw null; } }
1306         public static string ArgumentMustBeCSpaceType { get { throw null; } }
1307         public static string ArgumentMustBeOSpaceType { get { throw null; } }
1308         public static string ArrayTooSmall { get { throw null; } }
1309         public static string AtleastOneSSDLNeeded { get { throw null; } }
1310         public static string BadNavigationPropertyRolesCannotBeTheSame { get { throw null; } }
1311         public static string BetweenLimitsCannotBeUntypedNulls { get { throw null; } }
1312         public static string CalculatedEnumValueOutOfRange { get { throw null; } }
1313         public static string CannotCreateEmptyMultiset { get { throw null; } }
1314         public static string CannotCreateMultisetofNulls { get { throw null; } }
1315         public static string CannotLoadDifferentVersionOfSchemaInTheSameItemCollection { get { throw null; } }
1316         public static string CodeGen_PropertyDeclaringTypeIsValueType { get { throw null; } }
1317         public static string CodeGen_PropertyIsIndexed { get { throw null; } }
1318         public static string CodeGen_PropertyIsStatic { get { throw null; } }
1319         public static string CodeGen_PropertyNoGetter { get { throw null; } }
1320         public static string CodeGen_PropertyNoSetter { get { throw null; } }
1321         public static string CodeGen_PropertyStrongNameIdentity { get { throw null; } }
1322         public static string CodeGen_PropertyUnsupportedForm { get { throw null; } }
1323         public static string CodeGen_PropertyUnsupportedType { get { throw null; } }
1324         public static string Collections_InvalidEntityStateSource { get { throw null; } }
1325         public static string Collections_UnableToMergeCollections { get { throw null; } }
1326         public static string CommandTextFunctionsCannotDeclareStoreFunctionName { get { throw null; } }
1327         public static string CommandTextFunctionsNotComposable { get { throw null; } }
1328         public static string ComplexObject_ComplexObjectAlreadyAttachedToParent { get { throw null; } }
1329         public static string ComposableFunctionOrFunctionImportMustDeclareReturnType { get { throw null; } }
1330         public static string ConcatBuiltinNotSupported { get { throw null; } }
1331         public static string Cqt_Aggregate_InvalidFunction { get { throw null; } }
1332         public static string Cqt_And_BooleanArgumentsRequired { get { throw null; } }
1333         public static string Cqt_Apply_DuplicateVariableNames { get { throw null; } }
1334         public static string Cqt_Arithmetic_NumericCommonType { get { throw null; } }
1335         public static string Cqt_Binding_CollectionRequired { get { throw null; } }
1336         public static string Cqt_Binding_VariableNameNotValid { get { throw null; } }
1337         public static string Cqt_Case_InvalidResultType { get { throw null; } }
1338         public static string Cqt_Case_WhensMustEqualThens { get { throw null; } }
1339         public static string Cqt_CommandTree_InvalidDataSpace { get { throw null; } }
1340         public static string Cqt_Comparison_ComparableRequired { get { throw null; } }
1341         public static string Cqt_Constant_InvalidType { get { throw null; } }
1342         public static string Cqt_CrossJoin_AtLeastTwoInputs { get { throw null; } }
1343         public static string Cqt_DeRef_RefRequired { get { throw null; } }
1344         public static string Cqt_Distinct_InvalidCollection { get { throw null; } }
1345         public static string Cqt_Element_InvalidArgumentForUnwrapSingleProperty { get { throw null; } }
1346         public static string Cqt_Exceptions_InvalidCommandTree { get { throw null; } }
1347         public static string Cqt_ExpressionList_IncorrectElementCount { get { throw null; } }
1348         public static string Cqt_Factory_IncompatibleRelationEnds { get { throw null; } }
1349         public static string Cqt_Factory_NewCollectionInvalidCommonType { get { throw null; } }
1350         public static string Cqt_Factory_NoSuchRelationEnd { get { throw null; } }
1351         public static string Cqt_Function_CommandTextInExpression { get { throw null; } }
1352         public static string Cqt_Function_NonComposableInExpression { get { throw null; } }
1353         public static string Cqt_Function_VoidResultInvalid { get { throw null; } }
1354         public static string Cqt_General_MetadataNotReadOnly { get { throw null; } }
1355         public static string Cqt_General_NoProviderBooleanType { get { throw null; } }
1356         public static string Cqt_General_NoProviderIntegerType { get { throw null; } }
1357         public static string Cqt_General_NoProviderStringType { get { throw null; } }
1358         public static string Cqt_GetEntityRef_EntityRequired { get { throw null; } }
1359         public static string Cqt_GetRefKey_RefRequired { get { throw null; } }
1360         public static string Cqt_GroupBinding_CollectionRequired { get { throw null; } }
1361         public static string Cqt_GroupBinding_GroupVariableNameNotValid { get { throw null; } }
1362         public static string Cqt_GroupBy_AtLeastOneKeyOrAggregate { get { throw null; } }
1363         public static string Cqt_GroupBy_MoreThanOneGroupAggregate { get { throw null; } }
1364         public static string Cqt_IsNull_CollectionNotAllowed { get { throw null; } }
1365         public static string Cqt_IsNull_InvalidType { get { throw null; } }
1366         public static string Cqt_Join_DuplicateVariableNames { get { throw null; } }
1367         public static string Cqt_Limit_ConstantOrParameterRefRequired { get { throw null; } }
1368         public static string Cqt_Limit_IntegerRequired { get { throw null; } }
1369         public static string Cqt_Limit_NonNegativeLimitRequired { get { throw null; } }
1370         public static string Cqt_Metadata_EdmMemberIncorrectSpace { get { throw null; } }
1371         public static string Cqt_Metadata_EntitySetEntityContainerNull { get { throw null; } }
1372         public static string Cqt_Metadata_EntitySetIncorrectSpace { get { throw null; } }
1373         public static string Cqt_Metadata_EntityTypeEmptyKeyMembersInvalid { get { throw null; } }
1374         public static string Cqt_Metadata_EntityTypeNullKeyMembersInvalid { get { throw null; } }
1375         public static string Cqt_Metadata_FunctionIncorrectSpace { get { throw null; } }
1376         public static string Cqt_Metadata_FunctionParameterIncorrectSpace { get { throw null; } }
1377         public static string Cqt_Metadata_FunctionReturnParameterNull { get { throw null; } }
1378         public static string Cqt_Metadata_TypeUsageIncorrectSpace { get { throw null; } }
1379         public static string Cqt_NewInstance_CollectionTypeRequired { get { throw null; } }
1380         public static string Cqt_NewInstance_IncompatibleRelatedEntity_SourceTypeNotValid { get { throw null; } }
1381         public static string Cqt_NewInstance_StructuralTypeRequired { get { throw null; } }
1382         public static string Cqt_Not_BooleanArgumentRequired { get { throw null; } }
1383         public static string Cqt_Or_BooleanArgumentsRequired { get { throw null; } }
1384         public static string Cqt_Property_InstanceRequiredForInstance { get { throw null; } }
1385         public static string Cqt_Ref_PolymorphicArgRequired { get { throw null; } }
1386         public static string Cqt_RelatedEntityRef_TargetEndFromDifferentRelationship { get { throw null; } }
1387         public static string Cqt_RelatedEntityRef_TargetEndMustBeAtMostOne { get { throw null; } }
1388         public static string Cqt_RelatedEntityRef_TargetEndSameAsSourceEnd { get { throw null; } }
1389         public static string Cqt_RelatedEntityRef_TargetEntityNotCompatible { get { throw null; } }
1390         public static string Cqt_RelatedEntityRef_TargetEntityNotRef { get { throw null; } }
1391         public static string Cqt_RelNav_NoCompositions { get { throw null; } }
1392         public static string Cqt_Skip_ConstantOrParameterRefRequired { get { throw null; } }
1393         public static string Cqt_Skip_IntegerRequired { get { throw null; } }
1394         public static string Cqt_Skip_NonNegativeCountRequired { get { throw null; } }
1395         public static string Cqt_Sort_EmptyCollationInvalid { get { throw null; } }
1396         public static string Cqt_Sort_NonStringCollationInvalid { get { throw null; } }
1397         public static string Cqt_Sort_OrderComparable { get { throw null; } }
1398         public static string Cqt_Util_CheckListEmptyInvalid { get { throw null; } }
1399         public static string CtxAlias { get { throw null; } }
1400         public static string CtxAliasedNamespaceImport { get { throw null; } }
1401         public static string CtxAnd { get { throw null; } }
1402         public static string CtxAnyElement { get { throw null; } }
1403         public static string CtxApplyClause { get { throw null; } }
1404         public static string CtxBetween { get { throw null; } }
1405         public static string CtxCase { get { throw null; } }
1406         public static string CtxCaseElse { get { throw null; } }
1407         public static string CtxCaseWhenThen { get { throw null; } }
1408         public static string CtxCast { get { throw null; } }
1409         public static string CtxCollatedOrderByClauseItem { get { throw null; } }
1410         public static string CtxCollectionTypeDefinition { get { throw null; } }
1411         public static string CtxCommandExpression { get { throw null; } }
1412         public static string CtxCreateRef { get { throw null; } }
1413         public static string CtxDeref { get { throw null; } }
1414         public static string CtxDivide { get { throw null; } }
1415         public static string CtxElement { get { throw null; } }
1416         public static string CtxEquals { get { throw null; } }
1417         public static string CtxEscapedIdentifier { get { throw null; } }
1418         public static string CtxExcept { get { throw null; } }
1419         public static string CtxExists { get { throw null; } }
1420         public static string CtxExpressionList { get { throw null; } }
1421         public static string CtxFlatten { get { throw null; } }
1422         public static string CtxFromApplyClause { get { throw null; } }
1423         public static string CtxFromClause { get { throw null; } }
1424         public static string CtxFromClauseItem { get { throw null; } }
1425         public static string CtxFromClauseList { get { throw null; } }
1426         public static string CtxFromJoinClause { get { throw null; } }
1427         public static string CtxFunctionDefinition { get { throw null; } }
1428         public static string CtxGreaterThan { get { throw null; } }
1429         public static string CtxGreaterThanEqual { get { throw null; } }
1430         public static string CtxGroupByClause { get { throw null; } }
1431         public static string CtxGroupPartition { get { throw null; } }
1432         public static string CtxHavingClause { get { throw null; } }
1433         public static string CtxIdentifier { get { throw null; } }
1434         public static string CtxIn { get { throw null; } }
1435         public static string CtxIntersect { get { throw null; } }
1436         public static string CtxIsNotNull { get { throw null; } }
1437         public static string CtxIsNotOf { get { throw null; } }
1438         public static string CtxIsNull { get { throw null; } }
1439         public static string CtxIsOf { get { throw null; } }
1440         public static string CtxJoinClause { get { throw null; } }
1441         public static string CtxJoinOnClause { get { throw null; } }
1442         public static string CtxKey { get { throw null; } }
1443         public static string CtxLessThan { get { throw null; } }
1444         public static string CtxLessThanEqual { get { throw null; } }
1445         public static string CtxLike { get { throw null; } }
1446         public static string CtxLimitSubClause { get { throw null; } }
1447         public static string CtxLiteral { get { throw null; } }
1448         public static string CtxMemberAccess { get { throw null; } }
1449         public static string CtxMethod { get { throw null; } }
1450         public static string CtxMinus { get { throw null; } }
1451         public static string CtxModulus { get { throw null; } }
1452         public static string CtxMultiply { get { throw null; } }
1453         public static string CtxMultisetCtor { get { throw null; } }
1454         public static string CtxNamespaceImport { get { throw null; } }
1455         public static string CtxNamespaceImportList { get { throw null; } }
1456         public static string CtxNavigate { get { throw null; } }
1457         public static string CtxNot { get { throw null; } }
1458         public static string CtxNotBetween { get { throw null; } }
1459         public static string CtxNotEqual { get { throw null; } }
1460         public static string CtxNotIn { get { throw null; } }
1461         public static string CtxNotLike { get { throw null; } }
1462         public static string CtxNullLiteral { get { throw null; } }
1463         public static string CtxOfType { get { throw null; } }
1464         public static string CtxOfTypeOnly { get { throw null; } }
1465         public static string CtxOr { get { throw null; } }
1466         public static string CtxOrderByClause { get { throw null; } }
1467         public static string CtxOrderByClauseItem { get { throw null; } }
1468         public static string CtxOverlaps { get { throw null; } }
1469         public static string CtxParen { get { throw null; } }
1470         public static string CtxPlus { get { throw null; } }
1471         public static string CtxQueryExpression { get { throw null; } }
1472         public static string CtxQueryStatement { get { throw null; } }
1473         public static string CtxRef { get { throw null; } }
1474         public static string CtxRefTypeDefinition { get { throw null; } }
1475         public static string CtxRelationship { get { throw null; } }
1476         public static string CtxRelationshipList { get { throw null; } }
1477         public static string CtxRowCtor { get { throw null; } }
1478         public static string CtxRowTypeDefinition { get { throw null; } }
1479         public static string CtxSelectRowClause { get { throw null; } }
1480         public static string CtxSelectValueClause { get { throw null; } }
1481         public static string CtxSet { get { throw null; } }
1482         public static string CtxSimpleIdentifier { get { throw null; } }
1483         public static string CtxSkipSubClause { get { throw null; } }
1484         public static string CtxTopSubClause { get { throw null; } }
1485         public static string CtxTreat { get { throw null; } }
1486         public static string CtxTypeName { get { throw null; } }
1487         public static string CtxTypeNameWithTypeSpec { get { throw null; } }
1488         public static string CtxUnaryMinus { get { throw null; } }
1489         public static string CtxUnaryPlus { get { throw null; } }
1490         public static string CtxUnion { get { throw null; } }
1491         public static string CtxUnionAll { get { throw null; } }
1492         public static string CtxWhereClause { get { throw null; } }
1493         public static string DefaultNotAllowed { get { throw null; } }
1494         public static string DuplicateEnumMember { get { throw null; } }
1495         public static string EdmMembersDefiningTypeDoNotAgreeWithMetadataType { get { throw null; } }
1496         public static string ElementOperatorIsNotSupported { get { throw null; } }
1497         public static string ELinq_AnonymousType { get { throw null; } }
1498         public static string ELinq_ClosureType { get { throw null; } }
1499         public static string ELinq_CreateOrderedEnumerableNotSupported { get { throw null; } }
1500         public static string ELinq_CycleDetected { get { throw null; } }
1501         public static string ELinq_EdmFunctionDirectCall { get { throw null; } }
1502         public static string ELinq_ExpressionMustBeIQueryable { get { throw null; } }
1503         public static string ELinq_MethodNotDirectlyCallable { get { throw null; } }
1504         public static string ELinq_PropertyIndexNotSupported { get { throw null; } }
1505         public static string ELinq_SkipWithoutOrder { get { throw null; } }
1506         public static string ELinq_ThenByDoesNotFollowOrderBy { get { throw null; } }
1507         public static string ELinq_UnsupportedBinding { get { throw null; } }
1508         public static string ELinq_UnsupportedCastToDecimal { get { throw null; } }
1509         public static string ELinq_UnsupportedConstructor { get { throw null; } }
1510         public static string ELinq_UnsupportedDifferentContexts { get { throw null; } }
1511         public static string ELinq_UnsupportedInclude { get { throw null; } }
1512         public static string ELinq_UnsupportedInitializers { get { throw null; } }
1513         public static string ELinq_UnsupportedMergeAs { get { throw null; } }
1514         public static string ELinq_UnsupportedNestedFirst { get { throw null; } }
1515         public static string ELinq_UnsupportedNestedSingle { get { throw null; } }
1516         public static string ELinq_UnsupportedQueryableMethod { get { throw null; } }
1517         public static string EmptyCommandText { get { throw null; } }
1518         public static string EmptyDefiningQuery { get { throw null; } }
1519         public static string EmptySchemaTextReader { get { throw null; } }
1520         public static string EntityClient_CannotCloneStoreProvider { get { throw null; } }
1521         public static string EntityClient_CannotDeduceDbType { get { throw null; } }
1522         public static string EntityClient_CannotGetCommandText { get { throw null; } }
1523         public static string EntityClient_CannotGetCommandTree { get { throw null; } }
1524         public static string EntityClient_CannotReopenConnection { get { throw null; } }
1525         public static string EntityClient_CannotReprepareCommandDefinitionBasedCommand { get { throw null; } }
1526         public static string EntityClient_CannotSetCommandText { get { throw null; } }
1527         public static string EntityClient_CannotSetCommandTree { get { throw null; } }
1528         public static string EntityClient_ClosedConnectionForUpdate { get { throw null; } }
1529         public static string EntityClient_CommandDefinitionExecutionFailed { get { throw null; } }
1530         public static string EntityClient_CommandDefinitionPreparationFailed { get { throw null; } }
1531         public static string EntityClient_CommandExecutionFailed { get { throw null; } }
1532         public static string EntityClient_CommandTreeMetadataIncompatible { get { throw null; } }
1533         public static string EntityClient_ConnectionMustBeClosed { get { throw null; } }
1534         public static string EntityClient_ConnectionNotOpen { get { throw null; } }
1535         public static string EntityClient_ConnectionStateBroken { get { throw null; } }
1536         public static string EntityClient_ConnectionStateClosed { get { throw null; } }
1537         public static string EntityClient_ConnectionStringNeededBeforeOperation { get { throw null; } }
1538         public static string EntityClient_DataReaderIsStillOpen { get { throw null; } }
1539         public static string EntityClient_EmptyParameterName { get { throw null; } }
1540         public static string EntityClient_ErrorInBeginningTransaction { get { throw null; } }
1541         public static string EntityClient_ErrorInClosingConnection { get { throw null; } }
1542         public static string EntityClient_ExtraParametersWithNamedConnection { get { throw null; } }
1543         public static string EntityClient_FunctionImportEmptyCommandText { get { throw null; } }
1544         public static string EntityClient_InvalidNamedConnection { get { throw null; } }
1545         public static string EntityClient_InvalidStoredProcedureCommandText { get { throw null; } }
1546         public static string EntityClient_InvalidStoreProvider { get { throw null; } }
1547         public static string EntityClient_InvalidTransactionForCommand { get { throw null; } }
1548         public static string EntityClient_NoCommandText { get { throw null; } }
1549         public static string EntityClient_NoConnectionForAdapter { get { throw null; } }
1550         public static string EntityClient_NoConnectionForCommand { get { throw null; } }
1551         public static string EntityClient_NoStoreConnectionForUpdate { get { throw null; } }
1552         public static string EntityClient_ProviderGeneralError { get { throw null; } }
1553         public static string EntityClient_RequiresNonStoreCommandTree { get { throw null; } }
1554         public static string EntityClient_SettingsCannotBeChangedOnOpenConnection { get { throw null; } }
1555         public static string EntityClient_StoreReaderFailed { get { throw null; } }
1556         public static string EntityClient_TooFewColumns { get { throw null; } }
1557         public static string EntityClient_TransactionAlreadyStarted { get { throw null; } }
1558         public static string EntityClient_UnsupportedCommandType { get { throw null; } }
1559         public static string EntityClient_ValueNotString { get { throw null; } }
1560         public static string EntityKey_CannotChangeKey { get { throw null; } }
1561         public static string EntityKey_DataRecordMustBeEntity { get { throw null; } }
1562         public static string EntityKey_EntityKeyMustHaveValues { get { throw null; } }
1563         public static string EntityKey_InvalidQualifiedEntitySetName { get { throw null; } }
1564         public static string EntityKey_MissingEntitySetName { get { throw null; } }
1565         public static string EntityKey_NoNullsAllowedInKeyValuePairs { get { throw null; } }
1566         public static string EntityKey_UnexpectedNull { get { throw null; } }
1567         public static string EntityParameterCollectionRemoveInvalidObject { get { throw null; } }
1568         public static string EntityParameterContainedByAnotherCollection { get { throw null; } }
1569         public static string EntityParameterNull { get { throw null; } }
1570         public static string EntityProxyTypeInfo_ProxyHasWrongWrapper { get { throw null; } }
1571         public static string EntityReference_CannotChangeReferentialConstraintProperty { get { throw null; } }
1572         public static string EntityReference_CannotSetSpecialKeys { get { throw null; } }
1573         public static string EntityReference_EntityKeyValueMismatch { get { throw null; } }
1574         public static string EntityReference_LessThanExpectedRelatedEntitiesFound { get { throw null; } }
1575         public static string EntityReference_MoreThanExpectedRelatedEntitiesFound { get { throw null; } }
1576         public static string EntitySetInAnotherContainer { get { throw null; } }
1577         public static string EntityTypesDoNotAgree { get { throw null; } }
1578         public static string Entity_EntityCantHaveMultipleChangeTrackers { get { throw null; } }
1579         public static string ExpressionCannotBeNull { get { throw null; } }
1580         public static string ExpressionMustBeCollection { get { throw null; } }
1581         public static string ExpressionMustBeNumericType { get { throw null; } }
1582         public static string ExpressionTypeMustBeBoolean { get { throw null; } }
1583         public static string ExpressionTypeMustBeEqualComparable { get { throw null; } }
1584         public static string ExpressionTypeMustNotBeCollection { get { throw null; } }
1585         public static string ExprIsNotValidEntitySetForCreateRef { get { throw null; } }
1586         public static string ExtraInfo { get { throw null; } }
1587         public static string FacetDeclarationRequiresTypeAttribute { get { throw null; } }
1588         public static string FailedToRetrieveProviderManifest { get { throw null; } }
1589         public static string GeneralQueryError { get { throw null; } }
1590         public static string Generated_Views_Changed { get { throw null; } }
1591         public static string GeneratorErrorSeverityError { get { throw null; } }
1592         public static string GeneratorErrorSeverityUnknown { get { throw null; } }
1593         public static string GeneratorErrorSeverityWarning { get { throw null; } }
1594         public static string GenericSyntaxError { get { throw null; } }
1595         public static string GroupingKeysMustBeEqualComparable { get { throw null; } }
1596         public static string GroupPartitionOutOfContext { get { throw null; } }
1597         public static string GroupVarNotFoundInScope { get { throw null; } }
1598         public static string HavingRequiresGroupClause { get { throw null; } }
1599         public static string ImcompatibleCreateRefKeyElementType { get { throw null; } }
1600         public static string ImcompatibleCreateRefKeyType { get { throw null; } }
1601         public static string IncorrectProviderManifest { get { throw null; } }
1602         public static string InFromClause { get { throw null; } }
1603         public static string InGroupClause { get { throw null; } }
1604         public static string InnerJoinMustHaveOnPredicate { get { throw null; } }
1605         public static string InRowCtor { get { throw null; } }
1606         public static string InSelectProjectionList { get { throw null; } }
1607         public static string InvalidArgumentTypeForAggregateFunction { get { throw null; } }
1608         public static string InvalidCaseResultTypes { get { throw null; } }
1609         public static string InvalidCaseWhenThenNullType { get { throw null; } }
1610         public static string InvalidCastExpressionType { get { throw null; } }
1611         public static string InvalidCastType { get { throw null; } }
1612         public static string InvalidCreateRefKeyType { get { throw null; } }
1613         public static string InvalidDistinctArgumentInCtor { get { throw null; } }
1614         public static string InvalidDistinctArgumentInNonAggFunction { get { throw null; } }
1615         public static string InvalidDocumentationBothTextAndStructure { get { throw null; } }
1616         public static string InvalidEmptyIdentifier { get { throw null; } }
1617         public static string InvalidEmptyQuery { get { throw null; } }
1618         public static string InvalidEmptyQueryTextArgument { get { throw null; } }
1619         public static string InvalidEnumUnderlyingType { get { throw null; } }
1620         public static string InvalidFlattenArgument { get { throw null; } }
1621         public static string InvalidJoinLeftCorrelation { get { throw null; } }
1622         public static string InvalidMaxLengthSize { get { throw null; } }
1623         public static string InvalidMetadataMemberName { get { throw null; } }
1624         public static string InvalidMetadataPath { get { throw null; } }
1625         public static string InvalidModeForWithRelationshipClause { get { throw null; } }
1626         public static string InvalidNamespaceAlias { get { throw null; } }
1627         public static string InvalidNullArithmetic { get { throw null; } }
1628         public static string InvalidNullComparison { get { throw null; } }
1629         public static string InvalidOperationMultipleEndsInAssociation { get { throw null; } }
1630         public static string InvalidOperatorSymbol { get { throw null; } }
1631         public static string InvalidPredicateForCrossJoin { get { throw null; } }
1632         public static string InvalidPunctuatorSymbol { get { throw null; } }
1633         public static string InvalidSavePoint { get { throw null; } }
1634         public static string InvalidScopeIndex { get { throw null; } }
1635         public static string InvalidSelectValueAliasedExpression { get { throw null; } }
1636         public static string InvalidSelectValueList { get { throw null; } }
1637         public static string InvalidTypeForWithRelationshipClause { get { throw null; } }
1638         public static string Iqt_CTGen_UnexpectedAggregate { get { throw null; } }
1639         public static string Iqt_CTGen_UnexpectedVarDef { get { throw null; } }
1640         public static string Iqt_CTGen_UnexpectedVarDefList { get { throw null; } }
1641         public static string IsNullInvalidType { get { throw null; } }
1642         public static string LeftSetExpressionArgsMustBeCollection { get { throw null; } }
1643         public static string LikeArgMustBeStringType { get { throw null; } }
1644         public static string LocalizedCollection { get { throw null; } }
1645         public static string LocalizedColumn { get { throw null; } }
1646         public static string LocalizedComplex { get { throw null; } }
1647         public static string LocalizedEntity { get { throw null; } }
1648         public static string LocalizedEntityContainerExpression { get { throw null; } }
1649         public static string LocalizedEnumMember { get { throw null; } }
1650         public static string LocalizedFunction { get { throw null; } }
1651         public static string LocalizedInlineFunction { get { throw null; } }
1652         public static string LocalizedKeyword { get { throw null; } }
1653         public static string LocalizedLeft { get { throw null; } }
1654         public static string LocalizedLine { get { throw null; } }
1655         public static string LocalizedMetadataMemberExpression { get { throw null; } }
1656         public static string LocalizedNamespace { get { throw null; } }
1657         public static string LocalizedNear { get { throw null; } }
1658         public static string LocalizedPrimitive { get { throw null; } }
1659         public static string LocalizedReference { get { throw null; } }
1660         public static string LocalizedRight { get { throw null; } }
1661         public static string LocalizedRow { get { throw null; } }
1662         public static string LocalizedTerm { get { throw null; } }
1663         public static string LocalizedType { get { throw null; } }
1664         public static string LocalizedValueExpression { get { throw null; } }
1665         public static string MalformedSingleQuotePayload { get { throw null; } }
1666         public static string MalformedStringLiteralPayload { get { throw null; } }
1667         public static string Mapping_ConditionValueTypeMismatch { get { throw null; } }
1668         public static string Mapping_DifferentEdmStoreVersion { get { throw null; } }
1669         public static string Mapping_DifferentMappingEdmStoreVersion { get { throw null; } }
1670         public static string Mapping_DistinctFlagInReadWriteContainer { get { throw null; } }
1671         public static string Mapping_General_Error { get { throw null; } }
1672         public static string Mapping_InvalidContent_Association_Type_Empty { get { throw null; } }
1673         public static string Mapping_InvalidContent_ConditionMapping_Both_Members { get { throw null; } }
1674         public static string Mapping_InvalidContent_ConditionMapping_Both_Values { get { throw null; } }
1675         public static string Mapping_InvalidContent_ConditionMapping_Either_Members { get { throw null; } }
1676         public static string Mapping_InvalidContent_ConditionMapping_Either_Values { get { throw null; } }
1677         public static string Mapping_InvalidContent_ConditionMapping_NonScalar { get { throw null; } }
1678         public static string Mapping_InvalidContent_Container_SubElement { get { throw null; } }
1679         public static string Mapping_InvalidContent_General { get { throw null; } }
1680         public static string Mapping_InvalidContent_IsTypeOfNotTerminated { get { throw null; } }
1681         public static string Mapping_InvalidContent_Table_Expected { get { throw null; } }
1682         public static string Mapping_InvalidContent_TypeMapping_QueryView { get { throw null; } }
1683         public static string Mapping_ModificationFunction_In_Table_Context { get { throw null; } }
1684         public static string Mapping_ModificationFunction_MissingVersion { get { throw null; } }
1685         public static string Mapping_ModificationFunction_Multiple_Types { get { throw null; } }
1686         public static string Mapping_ModificationFunction_VersionMustBeCurrent { get { throw null; } }
1687         public static string Mapping_ModificationFunction_VersionMustBeOriginal { get { throw null; } }
1688         public static string Mapping_TypeName_For_First_QueryView { get { throw null; } }
1689         public static string Materializer_CannotReEnumerateQueryResults { get { throw null; } }
1690         public static string Materializer_PropertyIsNotNullable { get { throw null; } }
1691         public static string Materializer_UnsupportedType { get { throw null; } }
1692         public static string Metadata_General_Error { get { throw null; } }
1693         public static string MethodInvocationNotSupported { get { throw null; } }
1694         public static string MismatchNumberOfPropertiesinRelationshipConstraint { get { throw null; } }
1695         public static string MissingName { get { throw null; } }
1696         public static string MissingNamespaceAttribute { get { throw null; } }
1697         public static string MultisetElemsAreNotTypeCompatible { get { throw null; } }
1698         public static string NonComposableFunctionHasDisallowedAttribute { get { throw null; } }
1699         public static string NonComposableFunctionMustNotDeclareReturnType { get { throw null; } }
1700         public static string NotBinaryTypeForTypeUsage { get { throw null; } }
1701         public static string NotDateTimeOffsetTypeForTypeUsage { get { throw null; } }
1702         public static string NotDateTimeTypeForTypeUsage { get { throw null; } }
1703         public static string NotDecimalTypeForTypeUsage { get { throw null; } }
1704         public static string NotStringTypeForTypeUsage { get { throw null; } }
1705         public static string NotTimeTypeForTypeUsage { get { throw null; } }
1706         public static string NotValidInputPath { get { throw null; } }
1707         public static string NullLiteralCannotBePromotedToCollectionOfNulls { get { throw null; } }
1708         public static string ObjectContext_CannotAttachEntityWithoutKey { get { throw null; } }
1709         public static string ObjectContext_CannotAttachEntityWithTemporaryKey { get { throw null; } }
1710         public static string ObjectContext_CannotDeleteEntityNotInObjectStateManager { get { throw null; } }
1711         public static string ObjectContext_CannotDetachEntityNotInObjectStateManager { get { throw null; } }
1712         public static string ObjectContext_CannotSetDefaultContainerName { get { throw null; } }
1713         public static string ObjectContext_CommitWithConceptualNull { get { throw null; } }
1714         public static string ObjectContext_ContainerQualifiedEntitySetNameRequired { get { throw null; } }
1715         public static string ObjectContext_EntityAlreadyExistsInObjectStateManager { get { throw null; } }
1716         public static string ObjectContext_EntityNotTrackedOrHasTempKey { get { throw null; } }
1717         public static string ObjectContext_EntitySetNameOrEntityKeyRequired { get { throw null; } }
1718         public static string ObjectContext_ExecuteCommandWithMixOfDbParameterAndValues { get { throw null; } }
1719         public static string ObjectContext_InvalidCommandTimeout { get { throw null; } }
1720         public static string ObjectContext_InvalidConnection { get { throw null; } }
1721         public static string ObjectContext_InvalidConnectionString { get { throw null; } }
1722         public static string ObjectContext_InvalidDataAdapter { get { throw null; } }
1723         public static string ObjectContext_InvalidEntityState { get { throw null; } }
1724         public static string ObjectContext_InvalidRelationshipState { get { throw null; } }
1725         public static string ObjectContext_MetadataHasChanged { get { throw null; } }
1726         public static string ObjectContext_ObjectDisposed { get { throw null; } }
1727         public static string ObjectContext_ObjectNotFound { get { throw null; } }
1728         public static string ObjectContext_QualfiedEntitySetName { get { throw null; } }
1729         public static string ObjectContext_RequiredMetadataNotAvailble { get { throw null; } }
1730         public static string ObjectContext_SelectorExpressionMustBeMemberAccess { get { throw null; } }
1731         public static string ObjectContext_StoreEntityNotPresentInClient { get { throw null; } }
1732         public static string ObjectParameterCollection_ParametersLocked { get { throw null; } }
1733         public static string ObjectQuery_InvalidConnection { get { throw null; } }
1734         public static string ObjectQuery_InvalidEmptyQuery { get { throw null; } }
1735         public static string ObjectQuery_QueryBuilder_InvalidFilterPredicate { get { throw null; } }
1736         public static string ObjectQuery_QueryBuilder_InvalidGroupKeyList { get { throw null; } }
1737         public static string ObjectQuery_QueryBuilder_InvalidProjectionList { get { throw null; } }
1738         public static string ObjectQuery_QueryBuilder_InvalidQueryArgument { get { throw null; } }
1739         public static string ObjectQuery_QueryBuilder_InvalidSkipCount { get { throw null; } }
1740         public static string ObjectQuery_QueryBuilder_InvalidSortKeyList { get { throw null; } }
1741         public static string ObjectQuery_QueryBuilder_InvalidTopCount { get { throw null; } }
1742         public static string ObjectQuery_QueryBuilder_NotSupportedLinqSource { get { throw null; } }
1743         public static string ObjectQuery_Span_IncludeRequiresEntityOrEntityCollection { get { throw null; } }
1744         public static string ObjectQuery_Span_SpanPathSyntaxError { get { throw null; } }
1745         public static string ObjectQuery_Span_WhiteSpacePath { get { throw null; } }
1746         public static string ObjectQuery_UnableToMapResultType { get { throw null; } }
1747         public static string ObjectStateEntry_CannotAccessKeyEntryValues { get { throw null; } }
1748         public static string ObjectStateEntry_CannotDeleteOnKeyEntry { get { throw null; } }
1749         public static string ObjectStateEntry_CannotModifyKeyEntryState { get { throw null; } }
1750         public static string ObjectStateEntry_CantModifyDetachedDeletedEntries { get { throw null; } }
1751         public static string ObjectStateEntry_CantModifyRelationState { get { throw null; } }
1752         public static string ObjectStateEntry_CantModifyRelationValues { get { throw null; } }
1753         public static string ObjectStateEntry_CantSetEntityKey { get { throw null; } }
1754         public static string ObjectStateEntry_CurrentValuesDoesNotExist { get { throw null; } }
1755         public static string ObjectStateEntry_EntityMemberChangedWithoutEntityMemberChanging { get { throw null; } }
1756         public static string ObjectStateEntry_InvalidState { get { throw null; } }
1757         public static string ObjectStateEntry_InvalidTypeForComplexTypeProperty { get { throw null; } }
1758         public static string ObjectStateEntry_OriginalValuesDoesNotExist { get { throw null; } }
1759         public static string ObjectStateEntry_RelationshipAndKeyEntriesDoNotHaveRelationshipManagers { get { throw null; } }
1760         public static string ObjectStateManager_AcceptChangesEntityKeyIsNotValid { get { throw null; } }
1761         public static string ObjectStateManager_CannotChangeRelationshipStateEntityAdded { get { throw null; } }
1762         public static string ObjectStateManager_CannotChangeRelationshipStateEntityDeleted { get { throw null; } }
1763         public static string ObjectStateManager_CannotChangeRelationshipStateKeyEntry { get { throw null; } }
1764         public static string ObjectStateManager_CannotFixUpKeyToExistingValues { get { throw null; } }
1765         public static string ObjectStateManager_CannotGetRelationshipManagerForDetachedPocoEntity { get { throw null; } }
1766         public static string ObjectStateManager_ChangeRelationshipStateNotSupportedForForeignKeyAssociations { get { throw null; } }
1767         public static string ObjectStateManager_ChangeStateFromAddedWithNullKeyIsInvalid { get { throw null; } }
1768         public static string ObjectStateManager_DetachedObjectStateEntriesDoesNotExistInObjectStateManager { get { throw null; } }
1769         public static string ObjectStateManager_EntityConflictsWithKeyEntry { get { throw null; } }
1770         public static string ObjectStateManager_EntityNotTracked { get { throw null; } }
1771         public static string ObjectStateManager_InvalidKey { get { throw null; } }
1772         public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKey { get { throw null; } }
1773         public static string ObjectStateManager_KeyPropertyDoesntMatchValueInKeyForAttach { get { throw null; } }
1774         public static string ObjectStateManager_NoEntryExistForEntityKey { get { throw null; } }
1775         public static string ObjectStateManager_ObjectStateManagerContainsThisEntityKey { get { throw null; } }
1776         public static string ObjectView_AddNewOperationNotAllowedOnAbstractBindingList { get { throw null; } }
1777         public static string ObjectView_CannotReplacetheEntityorRow { get { throw null; } }
1778         public static string ObjectView_IncompatibleArgument { get { throw null; } }
1779         public static string ObjectView_IndexBasedInsertIsNotSupported { get { throw null; } }
1780         public static string ObjectView_WriteOperationNotAllowedOnReadOnlyBindingList { get { throw null; } }
1781         public static string OnlyStoreConnectionsSupported { get { throw null; } }
1782         public static string OperationOnReadOnlyCollection { get { throw null; } }
1783         public static string OperationOnReadOnlyItem { get { throw null; } }
1784         public static string OrderByKeyIsNotOrderComparable { get { throw null; } }
1785         public static string PlusLeftExpressionInvalidType { get { throw null; } }
1786         public static string PlusRightExpressionInvalidType { get { throw null; } }
1787         public static string ProviderDidNotCreateACommandDefinition { get { throw null; } }
1788         public static string ProviderDidNotReturnAProviderManifest { get { throw null; } }
1789         public static string ProviderDidNotReturnAProviderManifestToken { get { throw null; } }
1790         public static string ProviderDidNotReturnSpatialServices { get { throw null; } }
1791         public static string ProviderDoesNotSupportCreateDatabase { get { throw null; } }
1792         public static string ProviderDoesNotSupportCreateDatabaseScript { get { throw null; } }
1793         public static string ProviderDoesNotSupportDatabaseExists { get { throw null; } }
1794         public static string ProviderDoesNotSupportDeleteDatabase { get { throw null; } }
1795         public static string ProviderEscapeLikeArgumentReturnedNull { get { throw null; } }
1796         public static string ProviderManifestTokenNotFound { get { throw null; } }
1797         public static string ProviderRequiresStoreCommandTree { get { throw null; } }
1798         public static string ProviderReturnedNullForCreateCommandDefinition { get { throw null; } }
1799         public static string ProviderShouldOverrideEscapeLikeArgument { get { throw null; } }
1800         public static string RelatedEndExprTypeMustBeReference { get { throw null; } }
1801         public static string RelatedEnd_CannotCreateRelationshipEntitiesInDifferentContexts { get { throw null; } }
1802         public static string RelatedEnd_ConflictingChangeOfRelationshipDetected { get { throw null; } }
1803         public static string RelatedEnd_InvalidEntityContextForAttach { get { throw null; } }
1804         public static string RelatedEnd_InvalidEntityStateForAttach { get { throw null; } }
1805         public static string RelatedEnd_InvalidOwnerStateForAttach { get { throw null; } }
1806         public static string RelatedEnd_LoadCalledOnAlreadyLoadedNoTrackedRelatedEnd { get { throw null; } }
1807         public static string RelatedEnd_LoadCalledOnNonEmptyNoTrackedRelatedEnd { get { throw null; } }
1808         public static string RelatedEnd_OwnerIsNull { get { throw null; } }
1809         public static string RelatedEnd_RelatedEndNotFound { get { throw null; } }
1810         public static string RelatedEnd_UnableToAddEntity { get { throw null; } }
1811         public static string RelatedEnd_UnableToAddRelationshipWithDeletedEntity { get { throw null; } }
1812         public static string RelatedEnd_UnableToRemoveEntity { get { throw null; } }
1813         public static string RelationshipFromEndIsAmbiguos { get { throw null; } }
1814         public static string RelationshipManager_CannotGetRelatEndForDetachedPocoEntity { get { throw null; } }
1815         public static string RelationshipManager_CircularRelationshipsWithReferentialConstraints { get { throw null; } }
1816         public static string RelationshipManager_CollectionInitializeIsForDeserialization { get { throw null; } }
1817         public static string RelationshipManager_InconsistentReferentialConstraintProperties { get { throw null; } }
1818         public static string RelationshipManager_InitializeIsForDeserialization { get { throw null; } }
1819         public static string RelationshipManager_InvalidRelationshipManagerOwner { get { throw null; } }
1820         public static string RelationshipManager_UnableToRetrieveReferentialConstraintProperties { get { throw null; } }
1821         public static string RelationshipManager_UnexpectedNull { get { throw null; } }
1822         public static string RelationshipManager_UnexpectedNullContext { get { throw null; } }
1823         public static string RelationshipToEndIsAmbiguos { get { throw null; } }
1824         public static string ResultingExpressionTypeCannotBeNull { get { throw null; } }
1825         public static string RightSetExpressionArgsMustBeCollection { get { throw null; } }
1826         public static string RowCtorElementCannotBeNull { get { throw null; } }
1827         public static string RowTypeWithoutProperty { get { throw null; } }
1828         public static string SelectDistinctMustBeEqualComparable { get { throw null; } }
1829         public static string SourceUriUnknown { get { throw null; } }
1830         public static string SpatialWithUseStrongSpatialTypesFalse { get { throw null; } }
1831         public static string Spatial_GeographyValueNotCompatibleWithSpatialServices { get { throw null; } }
1832         public static string Spatial_GeometryValueNotCompatibleWithSpatialServices { get { throw null; } }
1833         public static string Spatial_ProviderValueNotCompatibleWithSpatialServices { get { throw null; } }
1834         public static string Spatial_WellKnownGeographyValueNotValid { get { throw null; } }
1835         public static string Spatial_WellKnownGeometryValueNotValid { get { throw null; } }
1836         public static string Spatial_WellKnownValueSerializationPropertyNotDirectlySettable { get { throw null; } }
1837         public static string SqlGen_ApplyNotSupportedOnSql8 { get { throw null; } }
1838         public static string SqlGen_NiladicFunctionsCannotHaveParameters { get { throw null; } }
1839         public static string SqlGen_ParameterForLimitNotSupportedOnSql8 { get { throw null; } }
1840         public static string SqlGen_ParameterForSkipNotSupportedOnSql8 { get { throw null; } }
1841         public static string SqlProvider_CredentialsMissingForMasterConnection { get { throw null; } }
1842         public static string SqlProvider_DdlGeneration_CannotDeleteDatabaseNoInitialCatalog { get { throw null; } }
1843         public static string SqlProvider_DdlGeneration_CannotTellIfDatabaseExists { get { throw null; } }
1844         public static string SqlProvider_DdlGeneration_MissingInitialCatalog { get { throw null; } }
1845         public static string SqlProvider_GeographyValueNotSqlCompatible { get { throw null; } }
1846         public static string SqlProvider_GeometryValueNotSqlCompatible { get { throw null; } }
1847         public static string SqlProvider_IncompleteCreateDatabase { get { throw null; } }
1848         public static string SqlProvider_IncompleteCreateDatabaseAggregate { get { throw null; } }
1849         public static string SqlProvider_Sql2008RequiredForSpatial { get { throw null; } }
1850         public static string SqlProvider_SqlTypesAssemblyNotFound { get { throw null; } }
1851         public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoSrid { get { throw null; } }
1852         public static string SqlSpatialservices_CouldNotCreateWellKnownGeographyValueNoWkbOrWkt { get { throw null; } }
1853         public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoSrid { get { throw null; } }
1854         public static string SqlSpatialservices_CouldNotCreateWellKnownGeometryValueNoWkbOrWkt { get { throw null; } }
1855         public static string StackOverflowInParser { get { throw null; } }
1856         public static string TopAndLimitCannotCoexist { get { throw null; } }
1857         public static string TopAndSkipCannotCoexist { get { throw null; } }
1858         public static string TVFReturnTypeRowHasNonScalarProperty { get { throw null; } }
1859         public static string TypeArgumentIsNotValid { get { throw null; } }
1860         public static string TypeArgumentMustBeLiteral { get { throw null; } }
1861         public static string TypeDeclaredAsAttributeAndElement { get { throw null; } }
1862         public static string TypeMustBeDeclared { get { throw null; } }
1863         public static string TypeMustBeInheritableType { get { throw null; } }
1864         public static string UnableToDetermineApplicationContext { get { throw null; } }
1865         public static string UnableToDetermineStoreVersion { get { throw null; } }
1866         public static string UnableToLoadResource { get { throw null; } }
1867         public static string UnknownAstCommandExpression { get { throw null; } }
1868         public static string UnknownAstExpressionType { get { throw null; } }
1869         public static string UnknownBuiltInAstExpressionType { get { throw null; } }
1870         public static string Update_AmbiguousServerGenIdentifier { get { throw null; } }
1871         public static string Update_CircularRelationships { get { throw null; } }
1872         public static string Update_ConstraintCycle { get { throw null; } }
1873         public static string Update_DuplicateKeys { get { throw null; } }
1874         public static string Update_ErrorLoadingRecord { get { throw null; } }
1875         public static string Update_GeneralExecutionException { get { throw null; } }
1876         public static string Update_InvalidChanges { get { throw null; } }
1877         public static string Update_ReferentialConstraintIntegrityViolation { get { throw null; } }
1878         public static string Update_WorkspaceMismatch { get { throw null; } }
1879         public static string Validator_BaseTypeHasMemberOfSameName { get { throw null; } }
1880         public static string Validator_CollectionHasNoTypeUsage { get { throw null; } }
1881         public static string Validator_CollectionTypesCannotHaveBaseType { get { throw null; } }
1882         public static string Validator_EmptyIdentity { get { throw null; } }
1883         public static string Validator_FacetHasNoName { get { throw null; } }
1884         public static string Validator_FacetTypeIsNull { get { throw null; } }
1885         public static string Validator_ItemAttributeHasNullTypeUsage { get { throw null; } }
1886         public static string Validator_MemberHasNoName { get { throw null; } }
1887         public static string Validator_MemberHasNullDeclaringType { get { throw null; } }
1888         public static string Validator_MemberHasNullTypeUsage { get { throw null; } }
1889         public static string Validator_MetadataPropertyHasNoName { get { throw null; } }
1890         public static string Validator_OSpace_Convention_NonMatchingUnderlyingTypes { get { throw null; } }
1891         public static string Validator_RefTypeHasNullEntityType { get { throw null; } }
1892         public static string Validator_RefTypesCannotHaveBaseType { get { throw null; } }
1893         public static string Validator_TypeHasNoName { get { throw null; } }
1894         public static string Validator_TypeHasNoNamespace { get { throw null; } }
1895         public static string Validator_TypeUsageHasNullEdmType { get { throw null; } }
1896         public static string ViewGen_AND { get { throw null; } }
1897         public static string ViewGen_CommaBlank { get { throw null; } }
1898         public static string ViewGen_Entities { get { throw null; } }
1899         public static string ViewGen_EntityInstanceToken { get { throw null; } }
1900         public static string ViewGen_Error { get { throw null; } }
1901         public static string Viewgen_ErrorPattern_Partition_Disj_Eq { get { throw null; } }
1902         public static string Viewgen_ErrorPattern_Partition_Disj_Subs { get { throw null; } }
1903         public static string Viewgen_ErrorPattern_Partition_Disj_Subs_Ref { get { throw null; } }
1904         public static string Viewgen_ErrorPattern_Partition_Disj_Unk { get { throw null; } }
1905         public static string Viewgen_ErrorPattern_Partition_Eq_Disj { get { throw null; } }
1906         public static string Viewgen_ErrorPattern_Partition_Eq_Subs { get { throw null; } }
1907         public static string Viewgen_ErrorPattern_Partition_Eq_Subs_Ref { get { throw null; } }
1908         public static string Viewgen_ErrorPattern_Partition_Eq_Unk { get { throw null; } }
1909         public static string Viewgen_ErrorPattern_Partition_Eq_Unk_Association { get { throw null; } }
1910         public static string Viewgen_ErrorPattern_Partition_Sub_Disj { get { throw null; } }
1911         public static string Viewgen_ErrorPattern_Partition_Sub_Eq { get { throw null; } }
1912         public static string Viewgen_ErrorPattern_Partition_Sub_Eq_Ref { get { throw null; } }
1913         public static string Viewgen_ErrorPattern_Partition_Sub_Unk { get { throw null; } }
1914         public static string ViewGen_Extent { get { throw null; } }
1915         public static string Viewgen_NoJoinKeyOrFK { get { throw null; } }
1916         public static string ViewGen_NotNull { get { throw null; } }
1917         public static string ViewGen_Null { get { throw null; } }
1918         public static string ViewGen_Tuples { get { throw null; } }
1919         public static string WildcardEnumeratorReturnedNull { get { throw null; } }
ADP_CollectionParameterElementIsNull(object p0)1920         public static string ADP_CollectionParameterElementIsNull(object p0) { throw null; }
ADP_CollectionParameterElementIsNullOrEmpty(object p0)1921         public static string ADP_CollectionParameterElementIsNullOrEmpty(object p0) { throw null; }
ADP_ConnectionStringSyntax(object p0)1922         public static string ADP_ConnectionStringSyntax(object p0) { throw null; }
ADP_DataReaderClosed(object p0)1923         public static string ADP_DataReaderClosed(object p0) { throw null; }
ADP_InternalProviderError(object p0)1924         public static string ADP_InternalProviderError(object p0) { throw null; }
ADP_InvalidBufferSizeOrIndex(object p0, object p1)1925         public static string ADP_InvalidBufferSizeOrIndex(object p0, object p1) { throw null; }
ADP_InvalidConnectionOptionValue(object p0)1926         public static string ADP_InvalidConnectionOptionValue(object p0) { throw null; }
ADP_InvalidDataLength(object p0)1927         public static string ADP_InvalidDataLength(object p0) { throw null; }
ADP_InvalidDataReaderMissingColumnForType(object p0, object p1)1928         public static string ADP_InvalidDataReaderMissingColumnForType(object p0, object p1) { throw null; }
ADP_InvalidDataReaderMissingDiscriminatorColumn(object p0, object p1)1929         public static string ADP_InvalidDataReaderMissingDiscriminatorColumn(object p0, object p1) { throw null; }
ADP_InvalidDataReaderUnableToMaterializeNonScalarType(object p0, object p1)1930         public static string ADP_InvalidDataReaderUnableToMaterializeNonScalarType(object p0, object p1) { throw null; }
ADP_InvalidDataType(object p0)1931         public static string ADP_InvalidDataType(object p0) { throw null; }
ADP_InvalidDestinationBufferIndex(object p0, object p1)1932         public static string ADP_InvalidDestinationBufferIndex(object p0, object p1) { throw null; }
ADP_InvalidEnumerationValue(object p0, object p1)1933         public static string ADP_InvalidEnumerationValue(object p0, object p1) { throw null; }
ADP_InvalidSizeValue(object p0)1934         public static string ADP_InvalidSizeValue(object p0) { throw null; }
ADP_InvalidSourceBufferIndex(object p0, object p1)1935         public static string ADP_InvalidSourceBufferIndex(object p0, object p1) { throw null; }
ADP_KeysRequiredForJoinOverNest(object p0)1936         public static string ADP_KeysRequiredForJoinOverNest(object p0) { throw null; }
ADP_KeywordNotSupported(object p0)1937         public static string ADP_KeywordNotSupported(object p0) { throw null; }
ADP_NestingNotSupported(object p0, object p1)1938         public static string ADP_NestingNotSupported(object p0, object p1) { throw null; }
ADP_NonSequentialChunkAccess(object p0, object p1, object p2)1939         public static string ADP_NonSequentialChunkAccess(object p0, object p1, object p2) { throw null; }
ADP_NonSequentialColumnAccess(object p0, object p1)1940         public static string ADP_NonSequentialColumnAccess(object p0, object p1) { throw null; }
ADP_NoQueryMappingView(object p0, object p1)1941         public static string ADP_NoQueryMappingView(object p0, object p1) { throw null; }
ADP_UnknownDataTypeCode(object p0, object p1)1942         public static string ADP_UnknownDataTypeCode(object p0, object p1) { throw null; }
AliasNameAlreadyUsed(object p0)1943         public static string AliasNameAlreadyUsed(object p0) { throw null; }
AliasNameIsAlreadyDefined(object p0)1944         public static string AliasNameIsAlreadyDefined(object p0) { throw null; }
AllArtifactsMustTargetSameProvider_InvariantName(object p0, object p1)1945         public static string AllArtifactsMustTargetSameProvider_InvariantName(object p0, object p1) { throw null; }
AllArtifactsMustTargetSameProvider_ManifestToken(object p0, object p1)1946         public static string AllArtifactsMustTargetSameProvider_ManifestToken(object p0, object p1) { throw null; }
AmbiguousEntityContainerEnd(object p0, object p1)1947         public static string AmbiguousEntityContainerEnd(object p0, object p1) { throw null; }
AmbiguousFunctionAndType(object p0, object p1)1948         public static string AmbiguousFunctionAndType(object p0, object p1) { throw null; }
AmbiguousFunctionOverload(object p0, object p1)1949         public static string AmbiguousFunctionOverload(object p0, object p1) { throw null; }
AmbiguousMetadataMemberName(object p0, object p1, object p2)1950         public static string AmbiguousMetadataMemberName(object p0, object p1, object p2) { throw null; }
ArgumentOutOfRange(object p0)1951         public static string ArgumentOutOfRange(object p0) { throw null; }
ArgumentOutOfRangeExpectedPostiveNumber(object p0)1952         public static string ArgumentOutOfRangeExpectedPostiveNumber(object p0) { throw null; }
ArgumentTypesAreIncompatible(object p0, object p1)1953         public static string ArgumentTypesAreIncompatible(object p0, object p1) { throw null; }
AssemblyMissingFromAssembliesToConsider(object p0)1954         public static string AssemblyMissingFromAssembliesToConsider(object p0) { throw null; }
BadNamespaceOrAlias(object p0)1955         public static string BadNamespaceOrAlias(object p0) { throw null; }
BadNavigationPropertyBadFromRoleType(object p0, object p1, object p2, object p3, object p4)1956         public static string BadNavigationPropertyBadFromRoleType(object p0, object p1, object p2, object p3, object p4) { throw null; }
BadNavigationPropertyRelationshipNotRelationship(object p0)1957         public static string BadNavigationPropertyRelationshipNotRelationship(object p0) { throw null; }
BadNavigationPropertyUndefinedRole(object p0, object p1)1958         public static string BadNavigationPropertyUndefinedRole(object p0, object p1) { throw null; }
BadParameterDirection(object p0, object p1, object p2, object p3)1959         public static string BadParameterDirection(object p0, object p1, object p2, object p3) { throw null; }
BadParameterDirectionForComposableFunctions(object p0, object p1, object p2, object p3)1960         public static string BadParameterDirectionForComposableFunctions(object p0, object p1, object p2, object p3) { throw null; }
BadPrecisionAndScale(object p0, object p1)1961         public static string BadPrecisionAndScale(object p0, object p1) { throw null; }
BetweenLimitsTypesAreNotCompatible(object p0, object p1)1962         public static string BetweenLimitsTypesAreNotCompatible(object p0, object p1) { throw null; }
BetweenLimitsTypesAreNotOrderComparable(object p0, object p1)1963         public static string BetweenLimitsTypesAreNotOrderComparable(object p0, object p1) { throw null; }
BetweenValueIsNotOrderComparable(object p0, object p1)1964         public static string BetweenValueIsNotOrderComparable(object p0, object p1) { throw null; }
BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet(object p0, object p1)1965         public static string BothMinAndMaxValueMustBeSpecifiedForNonConstantFacet(object p0, object p1) { throw null; }
CannotCallNoncomposableFunction(object p0)1966         public static string CannotCallNoncomposableFunction(object p0) { throw null; }
CannotConvertNumericLiteral(object p0, object p1)1967         public static string CannotConvertNumericLiteral(object p0, object p1) { throw null; }
CannotInstantiateAbstractType(object p0)1968         public static string CannotInstantiateAbstractType(object p0) { throw null; }
CannotResolveNameToTypeOrFunction(object p0)1969         public static string CannotResolveNameToTypeOrFunction(object p0) { throw null; }
CannotUseSystemNamespaceAsAlias(object p0)1970         public static string CannotUseSystemNamespaceAsAlias(object p0) { throw null; }
CheckArgumentContainsNullFailed(object p0)1971         public static string CheckArgumentContainsNullFailed(object p0) { throw null; }
CodeGen_ConstructorNoParameterless(object p0)1972         public static string CodeGen_ConstructorNoParameterless(object p0) { throw null; }
Collections_CannotFillTryDifferentMergeOption(object p0, object p1)1973         public static string Collections_CannotFillTryDifferentMergeOption(object p0, object p1) { throw null; }
Collections_ExpectedCollectionGotReference(object p0, object p1, object p2)1974         public static string Collections_ExpectedCollectionGotReference(object p0, object p1, object p2) { throw null; }
Collections_InvalidEntityStateLoad(object p0)1975         public static string Collections_InvalidEntityStateLoad(object p0) { throw null; }
Collections_NoRelationshipSetMatched(object p0)1976         public static string Collections_NoRelationshipSetMatched(object p0) { throw null; }
CompiledELinq_UnsupportedNamedParameterType(object p0, object p1)1977         public static string CompiledELinq_UnsupportedNamedParameterType(object p0, object p1) { throw null; }
CompiledELinq_UnsupportedNamedParameterUseAsType(object p0, object p1)1978         public static string CompiledELinq_UnsupportedNamedParameterUseAsType(object p0, object p1) { throw null; }
CompiledELinq_UnsupportedParameterTypes(object p0)1979         public static string CompiledELinq_UnsupportedParameterTypes(object p0) { throw null; }
ComplexObject_ComplexChangeRequestedOnScalarProperty(object p0)1980         public static string ComplexObject_ComplexChangeRequestedOnScalarProperty(object p0) { throw null; }
ComplexObject_NullableComplexTypesNotSupported(object p0)1981         public static string ComplexObject_NullableComplexTypesNotSupported(object p0) { throw null; }
ComplexTypeAsReturnTypeAndDefinedEntitySet(object p0, object p1)1982         public static string ComplexTypeAsReturnTypeAndDefinedEntitySet(object p0, object p1) { throw null; }
ComplexTypeAsReturnTypeAndNestedComplexProperty(object p0, object p1, object p2)1983         public static string ComplexTypeAsReturnTypeAndNestedComplexProperty(object p0, object p1, object p2) { throw null; }
ConcurrencyRedefinedOnSubTypeOfEntitySetType(object p0, object p1, object p2)1984         public static string ConcurrencyRedefinedOnSubTypeOfEntitySetType(object p0, object p1, object p2) { throw null; }
ConstantFacetSpecifiedInSchema(object p0, object p1)1985         public static string ConstantFacetSpecifiedInSchema(object p0, object p1) { throw null; }
CouldNotResolveIdentifier(object p0)1986         public static string CouldNotResolveIdentifier(object p0) { throw null; }
Cqt_Arithmetic_InvalidUnsignedTypeForUnaryMinus(object p0)1987         public static string Cqt_Arithmetic_InvalidUnsignedTypeForUnaryMinus(object p0) { throw null; }
Cqt_Binary_CollectionsRequired(object p0)1988         public static string Cqt_Binary_CollectionsRequired(object p0) { throw null; }
Cqt_Cast_InvalidCast(object p0, object p1)1989         public static string Cqt_Cast_InvalidCast(object p0, object p1) { throw null; }
Cqt_CommandTree_InvalidParameterName(object p0)1990         public static string Cqt_CommandTree_InvalidParameterName(object p0) { throw null; }
Cqt_Constant_ClrEnumTypeDoesNotMatchEdmEnumType(object p0, object p1, object p2)1991         public static string Cqt_Constant_ClrEnumTypeDoesNotMatchEdmEnumType(object p0, object p1, object p2) { throw null; }
Cqt_Constant_InvalidConstantType(object p0)1992         public static string Cqt_Constant_InvalidConstantType(object p0) { throw null; }
Cqt_Constant_InvalidValueForType(object p0)1993         public static string Cqt_Constant_InvalidValueForType(object p0) { throw null; }
Cqt_Copier_EndNotFound(object p0, object p1)1994         public static string Cqt_Copier_EndNotFound(object p0, object p1) { throw null; }
Cqt_Copier_EntityContainerNotFound(object p0)1995         public static string Cqt_Copier_EntityContainerNotFound(object p0) { throw null; }
Cqt_Copier_EntitySetNotFound(object p0, object p1)1996         public static string Cqt_Copier_EntitySetNotFound(object p0, object p1) { throw null; }
Cqt_Copier_FunctionNotFound(object p0)1997         public static string Cqt_Copier_FunctionNotFound(object p0) { throw null; }
Cqt_Copier_NavPropertyNotFound(object p0, object p1)1998         public static string Cqt_Copier_NavPropertyNotFound(object p0, object p1) { throw null; }
Cqt_Copier_PropertyNotFound(object p0, object p1)1999         public static string Cqt_Copier_PropertyNotFound(object p0, object p1) { throw null; }
Cqt_Copier_TypeNotFound(object p0)2000         public static string Cqt_Copier_TypeNotFound(object p0) { throw null; }
Cqt_CrossJoin_DuplicateVariableNames(object p0, object p1, object p2)2001         public static string Cqt_CrossJoin_DuplicateVariableNames(object p0, object p1, object p2) { throw null; }
Cqt_ExpressionLink_TypeMismatch(object p0, object p1)2002         public static string Cqt_ExpressionLink_TypeMismatch(object p0, object p1) { throw null; }
Cqt_Factory_MethodResultTypeNotSupported(object p0)2003         public static string Cqt_Factory_MethodResultTypeNotSupported(object p0) { throw null; }
Cqt_Factory_NoSuchProperty(object p0, object p1)2004         public static string Cqt_Factory_NoSuchProperty(object p0, object p1) { throw null; }
Cqt_Function_CanonicalFunction_AmbiguousMatch(object p0)2005         public static string Cqt_Function_CanonicalFunction_AmbiguousMatch(object p0) { throw null; }
Cqt_Function_CanonicalFunction_NotFound(object p0)2006         public static string Cqt_Function_CanonicalFunction_NotFound(object p0) { throw null; }
Cqt_General_PolymorphicArgRequired(object p0)2007         public static string Cqt_General_PolymorphicArgRequired(object p0) { throw null; }
Cqt_General_PolymorphicTypeRequired(object p0)2008         public static string Cqt_General_PolymorphicTypeRequired(object p0) { throw null; }
Cqt_General_UnsupportedExpression(object p0)2009         public static string Cqt_General_UnsupportedExpression(object p0) { throw null; }
Cqt_GroupBy_AggregateColumnExistsAsGroupColumn(object p0)2010         public static string Cqt_GroupBy_AggregateColumnExistsAsGroupColumn(object p0) { throw null; }
Cqt_GroupBy_KeyNotEqualityComparable(object p0)2011         public static string Cqt_GroupBy_KeyNotEqualityComparable(object p0) { throw null; }
Cqt_InvalidTypeForSetOperation(object p0, object p1)2012         public static string Cqt_InvalidTypeForSetOperation(object p0, object p1) { throw null; }
Cqt_NewInstance_CannotInstantiateAbstractType(object p0)2013         public static string Cqt_NewInstance_CannotInstantiateAbstractType(object p0) { throw null; }
Cqt_NewInstance_CannotInstantiateMemberlessType(object p0)2014         public static string Cqt_NewInstance_CannotInstantiateMemberlessType(object p0) { throw null; }
Cqt_RelNav_WrongSourceType(object p0)2015         public static string Cqt_RelNav_WrongSourceType(object p0) { throw null; }
Cqt_UDF_FunctionDefinitionGenerationFailed(object p0)2016         public static string Cqt_UDF_FunctionDefinitionGenerationFailed(object p0) { throw null; }
Cqt_UDF_FunctionDefinitionResultTypeMismatch(object p0, object p1, object p2)2017         public static string Cqt_UDF_FunctionDefinitionResultTypeMismatch(object p0, object p1, object p2) { throw null; }
Cqt_UDF_FunctionDefinitionWithCircularReference(object p0)2018         public static string Cqt_UDF_FunctionDefinitionWithCircularReference(object p0) { throw null; }
Cqt_UDF_FunctionHasNoDefinition(object p0)2019         public static string Cqt_UDF_FunctionHasNoDefinition(object p0) { throw null; }
Cqt_Unary_CollectionRequired(object p0)2020         public static string Cqt_Unary_CollectionRequired(object p0) { throw null; }
Cqt_Util_CheckListDuplicateName(object p0, object p1, object p2)2021         public static string Cqt_Util_CheckListDuplicateName(object p0, object p1, object p2) { throw null; }
Cqt_Validator_InvalidIncompatibleParameterReferences(object p0)2022         public static string Cqt_Validator_InvalidIncompatibleParameterReferences(object p0) { throw null; }
Cqt_Validator_InvalidIncorrectDataSpaceMetadata(object p0, object p1)2023         public static string Cqt_Validator_InvalidIncorrectDataSpaceMetadata(object p0, object p1) { throw null; }
Cqt_Validator_InvalidOtherWorkspaceMetadata(object p0)2024         public static string Cqt_Validator_InvalidOtherWorkspaceMetadata(object p0) { throw null; }
Cqt_Validator_VarRefInvalid(object p0)2025         public static string Cqt_Validator_VarRefInvalid(object p0) { throw null; }
Cqt_Validator_VarRefTypeMismatch(object p0)2026         public static string Cqt_Validator_VarRefTypeMismatch(object p0) { throw null; }
CreateRefTypeIdentifierMustBeASubOrSuperType(object p0, object p1)2027         public static string CreateRefTypeIdentifierMustBeASubOrSuperType(object p0, object p1) { throw null; }
CreateRefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1)2028         public static string CreateRefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1) { throw null; }
CtxFunction(object p0)2029         public static string CtxFunction(object p0) { throw null; }
CtxTypeCtor(object p0)2030         public static string CtxTypeCtor(object p0) { throw null; }
CycleInTypeHierarchy(object p0)2031         public static string CycleInTypeHierarchy(object p0) { throw null; }
DeRefArgIsNotOfRefType(object p0)2032         public static string DeRefArgIsNotOfRefType(object p0) { throw null; }
DifferentSchemaVersionInCollection(object p0, object p1, object p2)2033         public static string DifferentSchemaVersionInCollection(object p0, object p1, object p2) { throw null; }
DuplicateAnnotation(object p0, object p1)2034         public static string DuplicateAnnotation(object p0, object p1) { throw null; }
DuplicatedFunctionoverloads(object p0, object p1)2035         public static string DuplicatedFunctionoverloads(object p0, object p1) { throw null; }
DuplicatedInlineFunctionOverload(object p0)2036         public static string DuplicatedInlineFunctionOverload(object p0) { throw null; }
DuplicateEndName(object p0)2037         public static string DuplicateEndName(object p0) { throw null; }
DuplicateEntityContainerMemberName(object p0)2038         public static string DuplicateEntityContainerMemberName(object p0) { throw null; }
DuplicateEntitySetTable(object p0, object p1, object p2)2039         public static string DuplicateEntitySetTable(object p0, object p1, object p2) { throw null; }
DuplicateMemberName(object p0, object p1, object p2)2040         public static string DuplicateMemberName(object p0, object p1, object p2) { throw null; }
DuplicateMemberNameInExtendedEntityContainer(object p0, object p1, object p2)2041         public static string DuplicateMemberNameInExtendedEntityContainer(object p0, object p1, object p2) { throw null; }
DuplicatePropertyNameSpecifiedInEntityKey(object p0, object p1)2042         public static string DuplicatePropertyNameSpecifiedInEntityKey(object p0, object p1) { throw null; }
DuplicationOperation(object p0)2043         public static string DuplicationOperation(object p0) { throw null; }
EdmVersionNotSupportedByRuntime(object p0, object p1)2044         public static string EdmVersionNotSupportedByRuntime(object p0, object p1) { throw null; }
ELinq_EdmFunctionAttributedFunctionWithWrongReturnType(object p0, object p1)2045         public static string ELinq_EdmFunctionAttributedFunctionWithWrongReturnType(object p0, object p1) { throw null; }
ELinq_EdmFunctionAttributeParameterNameNotValid(object p0, object p1, object p2)2046         public static string ELinq_EdmFunctionAttributeParameterNameNotValid(object p0, object p1, object p2) { throw null; }
ELinq_InvalidOfTypeResult(object p0)2047         public static string ELinq_InvalidOfTypeResult(object p0) { throw null; }
ELinq_NotPropertyOrField(object p0)2048         public static string ELinq_NotPropertyOrField(object p0) { throw null; }
ELinq_UnboundParameterExpression(object p0)2049         public static string ELinq_UnboundParameterExpression(object p0) { throw null; }
ELinq_UnexpectedTypeForNavigationProperty(object p0, object p1, object p2, object p3)2050         public static string ELinq_UnexpectedTypeForNavigationProperty(object p0, object p1, object p2, object p3) { throw null; }
ELinq_UnhandledBindingType(object p0)2051         public static string ELinq_UnhandledBindingType(object p0) { throw null; }
ELinq_UnhandledExpressionType(object p0)2052         public static string ELinq_UnhandledExpressionType(object p0) { throw null; }
ELinq_UnrecognizedMember(object p0)2053         public static string ELinq_UnrecognizedMember(object p0) { throw null; }
ELinq_UnresolvableFunctionForExpression(object p0)2054         public static string ELinq_UnresolvableFunctionForExpression(object p0) { throw null; }
ELinq_UnresolvableFunctionForMember(object p0, object p1)2055         public static string ELinq_UnresolvableFunctionForMember(object p0, object p1) { throw null; }
ELinq_UnresolvableFunctionForMethod(object p0, object p1)2056         public static string ELinq_UnresolvableFunctionForMethod(object p0, object p1) { throw null; }
ELinq_UnresolvableFunctionForMethodAmbiguousMatch(object p0, object p1)2057         public static string ELinq_UnresolvableFunctionForMethodAmbiguousMatch(object p0, object p1) { throw null; }
ELinq_UnresolvableFunctionForMethodNotFound(object p0, object p1)2058         public static string ELinq_UnresolvableFunctionForMethodNotFound(object p0, object p1) { throw null; }
ELinq_UnresolvableStoreFunctionForExpression(object p0)2059         public static string ELinq_UnresolvableStoreFunctionForExpression(object p0) { throw null; }
ELinq_UnresolvableStoreFunctionForMember(object p0, object p1)2060         public static string ELinq_UnresolvableStoreFunctionForMember(object p0, object p1) { throw null; }
ELinq_UnsupportedAsUnicodeAndAsNonUnicode(object p0)2061         public static string ELinq_UnsupportedAsUnicodeAndAsNonUnicode(object p0) { throw null; }
ELinq_UnsupportedCast(object p0, object p1)2062         public static string ELinq_UnsupportedCast(object p0, object p1) { throw null; }
ELinq_UnsupportedComparison(object p0)2063         public static string ELinq_UnsupportedComparison(object p0) { throw null; }
ELinq_UnsupportedConstant(object p0)2064         public static string ELinq_UnsupportedConstant(object p0) { throw null; }
ELinq_UnsupportedEnumerableType(object p0)2065         public static string ELinq_UnsupportedEnumerableType(object p0) { throw null; }
ELinq_UnsupportedExpressionType(object p0)2066         public static string ELinq_UnsupportedExpressionType(object p0) { throw null; }
ELinq_UnsupportedHeterogeneousInitializers(object p0)2067         public static string ELinq_UnsupportedHeterogeneousInitializers(object p0) { throw null; }
ELinq_UnsupportedIsOrAs(object p0, object p1, object p2)2068         public static string ELinq_UnsupportedIsOrAs(object p0, object p1, object p2) { throw null; }
ELinq_UnsupportedKeySelector(object p0)2069         public static string ELinq_UnsupportedKeySelector(object p0) { throw null; }
ELinq_UnsupportedMethod(object p0)2070         public static string ELinq_UnsupportedMethod(object p0) { throw null; }
ELinq_UnsupportedMethodSuggestedAlternative(object p0, object p1)2071         public static string ELinq_UnsupportedMethodSuggestedAlternative(object p0, object p1) { throw null; }
ELinq_UnsupportedNominalType(object p0)2072         public static string ELinq_UnsupportedNominalType(object p0) { throw null; }
ELinq_UnsupportedNullConstant(object p0)2073         public static string ELinq_UnsupportedNullConstant(object p0) { throw null; }
ELinq_UnsupportedPassthrough(object p0, object p1)2074         public static string ELinq_UnsupportedPassthrough(object p0, object p1) { throw null; }
ELinq_UnsupportedRefComparison(object p0, object p1)2075         public static string ELinq_UnsupportedRefComparison(object p0, object p1) { throw null; }
ELinq_UnsupportedRowComparison(object p0)2076         public static string ELinq_UnsupportedRowComparison(object p0) { throw null; }
ELinq_UnsupportedRowMemberComparison(object p0)2077         public static string ELinq_UnsupportedRowMemberComparison(object p0) { throw null; }
ELinq_UnsupportedRowTypeComparison(object p0)2078         public static string ELinq_UnsupportedRowTypeComparison(object p0) { throw null; }
ELinq_UnsupportedStringRemoveCase(object p0, object p1)2079         public static string ELinq_UnsupportedStringRemoveCase(object p0, object p1) { throw null; }
ELinq_UnsupportedTrimStartTrimEndCase(object p0)2080         public static string ELinq_UnsupportedTrimStartTrimEndCase(object p0) { throw null; }
ELinq_UnsupportedType(object p0)2081         public static string ELinq_UnsupportedType(object p0) { throw null; }
ELinq_UnsupportedUseOfContextParameter(object p0)2082         public static string ELinq_UnsupportedUseOfContextParameter(object p0) { throw null; }
ELinq_UnsupportedVBDatePartInvalidInterval(object p0, object p1, object p2)2083         public static string ELinq_UnsupportedVBDatePartInvalidInterval(object p0, object p1, object p2) { throw null; }
ELinq_UnsupportedVBDatePartNonConstantInterval(object p0, object p1)2084         public static string ELinq_UnsupportedVBDatePartNonConstantInterval(object p0, object p1) { throw null; }
EmptyFile(object p0)2085         public static string EmptyFile(object p0) { throw null; }
EmptyName(object p0)2086         public static string EmptyName(object p0) { throw null; }
EndNameAlreadyDefinedDuplicate(object p0)2087         public static string EndNameAlreadyDefinedDuplicate(object p0) { throw null; }
EndWithManyMultiplicityCannotHaveOperationsSpecified(object p0, object p1)2088         public static string EndWithManyMultiplicityCannotHaveOperationsSpecified(object p0, object p1) { throw null; }
EndWithoutMultiplicity(object p0, object p1)2089         public static string EndWithoutMultiplicity(object p0, object p1) { throw null; }
EntityClient_ConnectionStringMissingInfo(object p0)2090         public static string EntityClient_ConnectionStringMissingInfo(object p0) { throw null; }
EntityClient_DbConnectionHasNoProvider(object p0)2091         public static string EntityClient_DbConnectionHasNoProvider(object p0) { throw null; }
EntityClient_DoesNotImplementIServiceProvider(object p0)2092         public static string EntityClient_DoesNotImplementIServiceProvider(object p0) { throw null; }
EntityClient_DuplicateParameterNames(object p0)2093         public static string EntityClient_DuplicateParameterNames(object p0) { throw null; }
EntityClient_EntityParameterEdmTypeNotScalar(object p0)2094         public static string EntityClient_EntityParameterEdmTypeNotScalar(object p0) { throw null; }
EntityClient_EntityParameterInconsistentEdmType(object p0, object p1)2095         public static string EntityClient_EntityParameterInconsistentEdmType(object p0, object p1) { throw null; }
EntityClient_ExecutingOnClosedConnection(object p0)2096         public static string EntityClient_ExecutingOnClosedConnection(object p0) { throw null; }
EntityClient_FailedToGetInformation(object p0)2097         public static string EntityClient_FailedToGetInformation(object p0) { throw null; }
EntityClient_FunctionImportMustBeNonComposable(object p0)2098         public static string EntityClient_FunctionImportMustBeNonComposable(object p0) { throw null; }
EntityClient_IncompatibleNavigationPropertyResult(object p0, object p1)2099         public static string EntityClient_IncompatibleNavigationPropertyResult(object p0, object p1) { throw null; }
EntityClient_InvalidParameterDirection(object p0)2100         public static string EntityClient_InvalidParameterDirection(object p0) { throw null; }
EntityClient_InvalidParameterName(object p0)2101         public static string EntityClient_InvalidParameterName(object p0) { throw null; }
EntityClient_ItemCollectionsNotRegisteredInWorkspace(object p0)2102         public static string EntityClient_ItemCollectionsNotRegisteredInWorkspace(object p0) { throw null; }
EntityClient_KeywordNotSupported(object p0)2103         public static string EntityClient_KeywordNotSupported(object p0) { throw null; }
EntityClient_NestedNamedConnection(object p0)2104         public static string EntityClient_NestedNamedConnection(object p0) { throw null; }
EntityClient_ProviderSpecificError(object p0)2105         public static string EntityClient_ProviderSpecificError(object p0) { throw null; }
EntityClient_ReturnedNullOnProviderMethod(object p0, object p1)2106         public static string EntityClient_ReturnedNullOnProviderMethod(object p0, object p1) { throw null; }
EntityClient_UnableToFindFunctionImport(object p0, object p1)2107         public static string EntityClient_UnableToFindFunctionImport(object p0, object p1) { throw null; }
EntityClient_UnableToFindFunctionImportContainer(object p0)2108         public static string EntityClient_UnableToFindFunctionImportContainer(object p0) { throw null; }
EntityClient_UnknownParameterType(object p0)2109         public static string EntityClient_UnknownParameterType(object p0) { throw null; }
EntityClient_UnmappedFunctionImport(object p0)2110         public static string EntityClient_UnmappedFunctionImport(object p0) { throw null; }
EntityClient_UnsupportedDbType(object p0, object p1)2111         public static string EntityClient_UnsupportedDbType(object p0, object p1) { throw null; }
EntityContainerAlreadyExists(object p0)2112         public static string EntityContainerAlreadyExists(object p0) { throw null; }
EntityContainerCannotExtendItself(object p0)2113         public static string EntityContainerCannotExtendItself(object p0) { throw null; }
EntityKeyMustBeScalar(object p0, object p1)2114         public static string EntityKeyMustBeScalar(object p0, object p1) { throw null; }
EntityKeyTypeCurrentlyNotSupported(object p0, object p1, object p2)2115         public static string EntityKeyTypeCurrentlyNotSupported(object p0, object p1, object p2) { throw null; }
EntityKeyTypeCurrentlyNotSupportedInSSDL(object p0, object p1, object p2, object p3, object p4)2116         public static string EntityKeyTypeCurrentlyNotSupportedInSSDL(object p0, object p1, object p2, object p3, object p4) { throw null; }
EntityKey_DoesntMatchKeyOnEntity(object p0)2117         public static string EntityKey_DoesntMatchKeyOnEntity(object p0) { throw null; }
EntityKey_EntitySetDoesNotMatch(object p0)2118         public static string EntityKey_EntitySetDoesNotMatch(object p0) { throw null; }
EntityKey_EntityTypesDoNotMatch(object p0, object p1)2119         public static string EntityKey_EntityTypesDoNotMatch(object p0, object p1) { throw null; }
EntityKey_IncorrectNumberOfKeyValuePairs(object p0, object p1, object p2)2120         public static string EntityKey_IncorrectNumberOfKeyValuePairs(object p0, object p1, object p2) { throw null; }
EntityKey_IncorrectValueType(object p0, object p1, object p2)2121         public static string EntityKey_IncorrectValueType(object p0, object p1, object p2) { throw null; }
EntityKey_InvalidName(object p0)2122         public static string EntityKey_InvalidName(object p0) { throw null; }
EntityKey_MissingKeyValue(object p0, object p1)2123         public static string EntityKey_MissingKeyValue(object p0, object p1) { throw null; }
EntityKey_NoCorrespondingOSpaceTypeForEnumKeyMember(object p0, object p1)2124         public static string EntityKey_NoCorrespondingOSpaceTypeForEnumKeyMember(object p0, object p1) { throw null; }
EntityKey_NullKeyValue(object p0, object p1)2125         public static string EntityKey_NullKeyValue(object p0, object p1) { throw null; }
EntityParameterCollectionInvalidIndex(object p0, object p1)2126         public static string EntityParameterCollectionInvalidIndex(object p0, object p1) { throw null; }
EntityParameterCollectionInvalidParameterName(object p0)2127         public static string EntityParameterCollectionInvalidParameterName(object p0) { throw null; }
EntityProxyTypeInfo_CannotSetEntityCollectionProperty(object p0, object p1)2128         public static string EntityProxyTypeInfo_CannotSetEntityCollectionProperty(object p0, object p1) { throw null; }
EntityProxyTypeInfo_DuplicateOSpaceType(object p0)2129         public static string EntityProxyTypeInfo_DuplicateOSpaceType(object p0) { throw null; }
EntityProxyTypeInfo_ProxyMetadataIsUnavailable(object p0)2130         public static string EntityProxyTypeInfo_ProxyMetadataIsUnavailable(object p0) { throw null; }
EntityReference_CannotAddMoreThanOneEntityToEntityReference(object p0, object p1)2131         public static string EntityReference_CannotAddMoreThanOneEntityToEntityReference(object p0, object p1) { throw null; }
EntityReference_ExpectedReferenceGotCollection(object p0, object p1, object p2)2132         public static string EntityReference_ExpectedReferenceGotCollection(object p0, object p1, object p2) { throw null; }
EntitySetNotInCSPace(object p0)2133         public static string EntitySetNotInCSPace(object p0) { throw null; }
EntitySetTypeHasNoKeys(object p0, object p1)2134         public static string EntitySetTypeHasNoKeys(object p0, object p1) { throw null; }
EnumMemberValueOutOfItsUnderylingTypeRange(object p0, object p1, object p2)2135         public static string EnumMemberValueOutOfItsUnderylingTypeRange(object p0, object p1, object p2) { throw null; }
ExpressionTypeMustBeEntityType(object p0, object p1, object p2)2136         public static string ExpressionTypeMustBeEntityType(object p0, object p1, object p2) { throw null; }
ExpressionTypeMustBeNominalType(object p0, object p1, object p2)2137         public static string ExpressionTypeMustBeNominalType(object p0, object p1, object p2) { throw null; }
FacetNotAllowed(object p0, object p1)2138         public static string FacetNotAllowed(object p0, object p1) { throw null; }
FacetsOnNonScalarType(object p0)2139         public static string FacetsOnNonScalarType(object p0) { throw null; }
FailedToFindClrTypeMapping(object p0)2140         public static string FailedToFindClrTypeMapping(object p0) { throw null; }
FailedToFindCSpaceTypeMapping(object p0)2141         public static string FailedToFindCSpaceTypeMapping(object p0) { throw null; }
FailedToFindOSpaceTypeMapping(object p0)2142         public static string FailedToFindOSpaceTypeMapping(object p0) { throw null; }
FailedToResolveAggregateFunction(object p0)2143         public static string FailedToResolveAggregateFunction(object p0) { throw null; }
FunctionImportCollectionAndRefParametersNotAllowed(object p0)2144         public static string FunctionImportCollectionAndRefParametersNotAllowed(object p0) { throw null; }
FunctionImportComposableAndSideEffectingNotAllowed(object p0)2145         public static string FunctionImportComposableAndSideEffectingNotAllowed(object p0) { throw null; }
FunctionImportEntitySetAndEntitySetPathDeclared(object p0)2146         public static string FunctionImportEntitySetAndEntitySetPathDeclared(object p0) { throw null; }
FunctionImportEntityTypeDoesNotMatchEntitySet(object p0, object p1, object p2)2147         public static string FunctionImportEntityTypeDoesNotMatchEntitySet(object p0, object p1, object p2) { throw null; }
FunctionImportNonNullableParametersNotAllowed(object p0)2148         public static string FunctionImportNonNullableParametersNotAllowed(object p0) { throw null; }
FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet(object p0)2149         public static string FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet(object p0) { throw null; }
FunctionImportSpecifiesEntitySetButNotEntityType(object p0)2150         public static string FunctionImportSpecifiesEntitySetButNotEntityType(object p0) { throw null; }
FunctionImportUnknownEntitySet(object p0, object p1)2151         public static string FunctionImportUnknownEntitySet(object p0, object p1) { throw null; }
FunctionImportWithUnsupportedReturnTypeV1(object p0)2152         public static string FunctionImportWithUnsupportedReturnTypeV1(object p0) { throw null; }
FunctionImportWithUnsupportedReturnTypeV1_1(object p0)2153         public static string FunctionImportWithUnsupportedReturnTypeV1_1(object p0) { throw null; }
FunctionImportWithUnsupportedReturnTypeV2(object p0)2154         public static string FunctionImportWithUnsupportedReturnTypeV2(object p0) { throw null; }
FunctionWithNonEdmPrimitiveTypeNotSupported(object p0, object p1)2155         public static string FunctionWithNonEdmPrimitiveTypeNotSupported(object p0, object p1) { throw null; }
FunctionWithNonPrimitiveTypeNotSupported(object p0, object p1)2156         public static string FunctionWithNonPrimitiveTypeNotSupported(object p0, object p1) { throw null; }
GeneralExceptionAsQueryInnerException(object p0)2157         public static string GeneralExceptionAsQueryInnerException(object p0) { throw null; }
Generated_Views_Invalid_Extent(object p0)2158         public static string Generated_Views_Invalid_Extent(object p0) { throw null; }
Generated_View_Type_Super_Class(object p0)2159         public static string Generated_View_Type_Super_Class(object p0) { throw null; }
GenericTypeNotSupported(object p0)2160         public static string GenericTypeNotSupported(object p0) { throw null; }
InferRelationshipEndAmbiguous(object p0, object p1, object p2, object p3, object p4)2161         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)2162         public static string InferRelationshipEndFailedNoEntitySetMatch(object p0, object p1, object p2, object p3, object p4) { throw null; }
InferRelationshipEndGivesAlreadyDefinedEnd(object p0, object p1)2163         public static string InferRelationshipEndGivesAlreadyDefinedEnd(object p0, object p1) { throw null; }
InvalidAction(object p0, object p1)2164         public static string InvalidAction(object p0, object p1) { throw null; }
InvalidAliasName(object p0)2165         public static string InvalidAliasName(object p0) { throw null; }
InvalidAssociationTypeForUnion(object p0)2166         public static string InvalidAssociationTypeForUnion(object p0) { throw null; }
InvalidBaseTypeForItemType(object p0, object p1)2167         public static string InvalidBaseTypeForItemType(object p0, object p1) { throw null; }
InvalidBaseTypeForNestedType(object p0, object p1)2168         public static string InvalidBaseTypeForNestedType(object p0, object p1) { throw null; }
InvalidBaseTypeForStructuredType(object p0, object p1)2169         public static string InvalidBaseTypeForStructuredType(object p0, object p1) { throw null; }
InvalidCast(object p0, object p1)2170         public static string InvalidCast(object p0, object p1) { throw null; }
InvalidCollectionForMapping(object p0)2171         public static string InvalidCollectionForMapping(object p0) { throw null; }
InvalidCollectionSpecified(object p0)2172         public static string InvalidCollectionSpecified(object p0) { throw null; }
InvalidComplexType(object p0, object p1, object p2, object p3)2173         public static string InvalidComplexType(object p0, object p1, object p2, object p3) { throw null; }
InvalidCtorArgumentType(object p0, object p1, object p2)2174         public static string InvalidCtorArgumentType(object p0, object p1, object p2) { throw null; }
InvalidCtorUseOnType(object p0)2175         public static string InvalidCtorUseOnType(object p0) { throw null; }
InvalidDateTimeOffsetLiteral(object p0)2176         public static string InvalidDateTimeOffsetLiteral(object p0) { throw null; }
InvalidDay(object p0, object p1)2177         public static string InvalidDay(object p0, object p1) { throw null; }
InvalidDayInMonth(object p0, object p1, object p2)2178         public static string InvalidDayInMonth(object p0, object p1, object p2) { throw null; }
InvalidDefaultBinaryWithNoMaxLength(object p0)2179         public static string InvalidDefaultBinaryWithNoMaxLength(object p0) { throw null; }
InvalidDefaultBoolean(object p0)2180         public static string InvalidDefaultBoolean(object p0) { throw null; }
InvalidDefaultDateTime(object p0, object p1)2181         public static string InvalidDefaultDateTime(object p0, object p1) { throw null; }
InvalidDefaultDateTimeOffset(object p0, object p1)2182         public static string InvalidDefaultDateTimeOffset(object p0, object p1) { throw null; }
InvalidDefaultDecimal(object p0, object p1, object p2)2183         public static string InvalidDefaultDecimal(object p0, object p1, object p2) { throw null; }
InvalidDefaultFloatingPoint(object p0, object p1, object p2)2184         public static string InvalidDefaultFloatingPoint(object p0, object p1, object p2) { throw null; }
InvalidDefaultGuid(object p0)2185         public static string InvalidDefaultGuid(object p0) { throw null; }
InvalidDefaultIntegral(object p0, object p1, object p2)2186         public static string InvalidDefaultIntegral(object p0, object p1, object p2) { throw null; }
InvalidDefaultTime(object p0, object p1)2187         public static string InvalidDefaultTime(object p0, object p1) { throw null; }
InvalidDeRefProperty(object p0, object p1, object p2)2188         public static string InvalidDeRefProperty(object p0, object p1, object p2) { throw null; }
InvalidEDMVersion(object p0)2189         public static string InvalidEDMVersion(object p0) { throw null; }
InvalidEndEntitySetTypeMismatch(object p0)2190         public static string InvalidEndEntitySetTypeMismatch(object p0) { throw null; }
InvalidEndRoleInRelationshipConstraint(object p0, object p1)2191         public static string InvalidEndRoleInRelationshipConstraint(object p0, object p1) { throw null; }
InvalidEntityContainerNameInExtends(object p0)2192         public static string InvalidEntityContainerNameInExtends(object p0) { throw null; }
InvalidEntityEndName(object p0, object p1)2193         public static string InvalidEntityEndName(object p0, object p1) { throw null; }
InvalidEntityParameterType(object p0)2194         public static string InvalidEntityParameterType(object p0) { throw null; }
InvalidEntityRootTypeArgument(object p0, object p1)2195         public static string InvalidEntityRootTypeArgument(object p0, object p1) { throw null; }
InvalidEntitySetName(object p0)2196         public static string InvalidEntitySetName(object p0) { throw null; }
InvalidEntitySetNameReference(object p0, object p1)2197         public static string InvalidEntitySetNameReference(object p0, object p1) { throw null; }
InvalidEntitySetType(object p0)2198         public static string InvalidEntitySetType(object p0) { throw null; }
InvalidEntityTypeArgument(object p0, object p1, object p2, object p3)2199         public static string InvalidEntityTypeArgument(object p0, object p1, object p2, object p3) { throw null; }
InvalidEscapedIdentifier(object p0)2200         public static string InvalidEscapedIdentifier(object p0) { throw null; }
InvalidEscapedIdentifierUnbalanced(object p0)2201         public static string InvalidEscapedIdentifierUnbalanced(object p0) { throw null; }
InvalidExpressionResolutionClass(object p0, object p1)2202         public static string InvalidExpressionResolutionClass(object p0, object p1) { throw null; }
InvalidFileExtension(object p0, object p1, object p2)2203         public static string InvalidFileExtension(object p0, object p1, object p2) { throw null; }
InvalidFromPropertyInRelationshipConstraint(object p0, object p1, object p2)2204         public static string InvalidFromPropertyInRelationshipConstraint(object p0, object p1, object p2) { throw null; }
InvalidGroupIdentifierReference(object p0)2205         public static string InvalidGroupIdentifierReference(object p0) { throw null; }
InvalidHour(object p0, object p1)2206         public static string InvalidHour(object p0, object p1) { throw null; }
InvalidImplicitRelationshipFromEnd(object p0)2207         public static string InvalidImplicitRelationshipFromEnd(object p0) { throw null; }
InvalidImplicitRelationshipToEnd(object p0)2208         public static string InvalidImplicitRelationshipToEnd(object p0) { throw null; }
InvalidInExprArgs(object p0, object p1)2209         public static string InvalidInExprArgs(object p0, object p1) { throw null; }
InvalidKeyArgument(object p0)2210         public static string InvalidKeyArgument(object p0) { throw null; }
InvalidKeyKeyDefinedInBaseClass(object p0, object p1)2211         public static string InvalidKeyKeyDefinedInBaseClass(object p0, object p1) { throw null; }
InvalidKeyMember(object p0)2212         public static string InvalidKeyMember(object p0) { throw null; }
InvalidKeyNoProperty(object p0, object p1)2213         public static string InvalidKeyNoProperty(object p0, object p1) { throw null; }
InvalidKeyNullablePart(object p0, object p1)2214         public static string InvalidKeyNullablePart(object p0, object p1) { throw null; }
InvalidKeyTypeForCollation(object p0)2215         public static string InvalidKeyTypeForCollation(object p0) { throw null; }
InvalidLiteralFormat(object p0, object p1)2216         public static string InvalidLiteralFormat(object p0, object p1) { throw null; }
InvalidMemberNameMatchesTypeName(object p0, object p1)2217         public static string InvalidMemberNameMatchesTypeName(object p0, object p1) { throw null; }
InvalidMetadataMemberClassResolution(object p0, object p1, object p2)2218         public static string InvalidMetadataMemberClassResolution(object p0, object p1, object p2) { throw null; }
InvalidMinute(object p0, object p1)2219         public static string InvalidMinute(object p0, object p1) { throw null; }
InvalidMonth(object p0, object p1)2220         public static string InvalidMonth(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleToPropertyNonNullableV1(object p0, object p1)2221         public static string InvalidMultiplicityFromRoleToPropertyNonNullableV1(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleToPropertyNonNullableV2(object p0, object p1)2222         public static string InvalidMultiplicityFromRoleToPropertyNonNullableV2(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleToPropertyNullableV1(object p0, object p1)2223         public static string InvalidMultiplicityFromRoleToPropertyNullableV1(object p0, object p1) { throw null; }
InvalidMultiplicityFromRoleUpperBoundMustBeOne(object p0, object p1)2224         public static string InvalidMultiplicityFromRoleUpperBoundMustBeOne(object p0, object p1) { throw null; }
InvalidMultiplicityToRoleLowerBoundMustBeZero(object p0, object p1)2225         public static string InvalidMultiplicityToRoleLowerBoundMustBeZero(object p0, object p1) { throw null; }
InvalidMultiplicityToRoleUpperBoundMustBeMany(object p0, object p1)2226         public static string InvalidMultiplicityToRoleUpperBoundMustBeMany(object p0, object p1) { throw null; }
InvalidMultiplicityToRoleUpperBoundMustBeOne(object p0, object p1)2227         public static string InvalidMultiplicityToRoleUpperBoundMustBeOne(object p0, object p1) { throw null; }
InvalidName(object p0, object p1)2228         public static string InvalidName(object p0, object p1) { throw null; }
InvalidNamespaceInUsing(object p0)2229         public static string InvalidNamespaceInUsing(object p0) { throw null; }
InvalidNamespaceOrAliasSpecified(object p0)2230         public static string InvalidNamespaceOrAliasSpecified(object p0) { throw null; }
InvalidNullLiteralForNonNullableMember(object p0, object p1)2231         public static string InvalidNullLiteralForNonNullableMember(object p0, object p1) { throw null; }
InvalidNumberOfParametersForAggregateFunction(object p0)2232         public static string InvalidNumberOfParametersForAggregateFunction(object p0) { throw null; }
InvalidParameterFormat(object p0)2233         public static string InvalidParameterFormat(object p0) { throw null; }
InvalidParameterTypeForAggregateFunction(object p0, object p1)2234         public static string InvalidParameterTypeForAggregateFunction(object p0, object p1) { throw null; }
InvalidPlaceholderRootTypeArgument(object p0, object p1, object p2, object p3)2235         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)2236         public static string InvalidPlaceholderTypeArgument(object p0, object p1, object p2, object p3, object p4, object p5) { throw null; }
InvalidPrimitiveTypeKind(object p0)2237         public static string InvalidPrimitiveTypeKind(object p0) { throw null; }
InvalidPropertyInRelationshipConstraint(object p0, object p1)2238         public static string InvalidPropertyInRelationshipConstraint(object p0, object p1) { throw null; }
InvalidPropertyType(object p0)2239         public static string InvalidPropertyType(object p0) { throw null; }
InvalidQueryResultType(object p0)2240         public static string InvalidQueryResultType(object p0) { throw null; }
InvalidRelationshipEndMultiplicity(object p0, object p1)2241         public static string InvalidRelationshipEndMultiplicity(object p0, object p1) { throw null; }
InvalidRelationshipEndType(object p0, object p1)2242         public static string InvalidRelationshipEndType(object p0, object p1) { throw null; }
InvalidRelationshipMember(object p0, object p1)2243         public static string InvalidRelationshipMember(object p0, object p1) { throw null; }
InvalidRelationshipSetName(object p0)2244         public static string InvalidRelationshipSetName(object p0) { throw null; }
InvalidRelationshipSetType(object p0)2245         public static string InvalidRelationshipSetType(object p0) { throw null; }
InvalidRootComplexType(object p0, object p1)2246         public static string InvalidRootComplexType(object p0, object p1) { throw null; }
InvalidRootRowType(object p0, object p1)2247         public static string InvalidRootRowType(object p0, object p1) { throw null; }
InvalidRowType(object p0, object p1, object p2, object p3)2248         public static string InvalidRowType(object p0, object p1, object p2, object p3) { throw null; }
InvalidSchemaEncountered(object p0)2249         public static string InvalidSchemaEncountered(object p0) { throw null; }
InvalidSecond(object p0, object p1)2250         public static string InvalidSecond(object p0, object p1) { throw null; }
InvalidSimpleIdentifier(object p0)2251         public static string InvalidSimpleIdentifier(object p0) { throw null; }
InvalidSimpleIdentifierNonASCII(object p0)2252         public static string InvalidSimpleIdentifierNonASCII(object p0) { throw null; }
InvalidSize(object p0, object p1, object p2, object p3)2253         public static string InvalidSize(object p0, object p1, object p2, object p3) { throw null; }
InvalidStringArgument(object p0)2254         public static string InvalidStringArgument(object p0) { throw null; }
InvalidSystemReferenceId(object p0, object p1, object p2, object p3)2255         public static string InvalidSystemReferenceId(object p0, object p1, object p2, object p3) { throw null; }
InvalidToPropertyInRelationshipConstraint(object p0, object p1, object p2)2256         public static string InvalidToPropertyInRelationshipConstraint(object p0, object p1, object p2) { throw null; }
InvalidUnarySetOpArgument(object p0)2257         public static string InvalidUnarySetOpArgument(object p0) { throw null; }
InvalidUnsignedTypeForUnaryMinusOperation(object p0)2258         public static string InvalidUnsignedTypeForUnaryMinusOperation(object p0) { throw null; }
InvalidUseOfWebPath(object p0)2259         public static string InvalidUseOfWebPath(object p0) { throw null; }
InvalidValueForParameterTypeSemanticsAttribute(object p0)2260         public static string InvalidValueForParameterTypeSemanticsAttribute(object p0) { throw null; }
InvalidWithRelationshipTargetEndMultiplicity(object p0, object p1)2261         public static string InvalidWithRelationshipTargetEndMultiplicity(object p0, object p1) { throw null; }
InvalidYear(object p0, object p1)2262         public static string InvalidYear(object p0, object p1) { throw null; }
Iqt_General_UnsupportedOp(object p0)2263         public static string Iqt_General_UnsupportedOp(object p0) { throw null; }
ItemCollectionAlreadyRegistered(object p0)2264         public static string ItemCollectionAlreadyRegistered(object p0) { throw null; }
ItemDuplicateIdentity(object p0)2265         public static string ItemDuplicateIdentity(object p0) { throw null; }
ItemInvalidIdentity(object p0)2266         public static string ItemInvalidIdentity(object p0) { throw null; }
KeyMissingOnEntityType(object p0)2267         public static string KeyMissingOnEntityType(object p0) { throw null; }
KeyMustBeCorrelated(object p0)2268         public static string KeyMustBeCorrelated(object p0) { throw null; }
LiteralTypeNotFoundInMetadata(object p0)2269         public static string LiteralTypeNotFoundInMetadata(object p0) { throw null; }
LiteralTypeNotSupported(object p0)2270         public static string LiteralTypeNotSupported(object p0) { throw null; }
MalformedXml(object p0, object p1)2271         public static string MalformedXml(object p0, object p1) { throw null; }
Mapping_AbstractTypeMappingToNonAbstractType(object p0, object p1)2272         public static string Mapping_AbstractTypeMappingToNonAbstractType(object p0, object p1) { throw null; }
Mapping_AllQueryViewAtCompileTime(object p0)2273         public static string Mapping_AllQueryViewAtCompileTime(object p0) { throw null; }
Mapping_AlreadyMapped_StorageEntityContainer(object p0)2274         public static string Mapping_AlreadyMapped_StorageEntityContainer(object p0) { throw null; }
Mapping_CannotMapCLRTypeMultipleTimes(object p0)2275         public static string Mapping_CannotMapCLRTypeMultipleTimes(object p0) { throw null; }
Mapping_Default_OCMapping_Clr_Member(object p0, object p1, object p2)2276         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)2277         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)2278         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)2279         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)2280         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)2281         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)2282         public static string Mapping_Duplicate_CdmAssociationSet_StorageMap(object p0) { throw null; }
Mapping_Duplicate_PropertyMap_CaseInsensitive(object p0)2283         public static string Mapping_Duplicate_PropertyMap_CaseInsensitive(object p0) { throw null; }
Mapping_Duplicate_Type(object p0)2284         public static string Mapping_Duplicate_Type(object p0) { throw null; }
Mapping_Empty_QueryView(object p0)2285         public static string Mapping_Empty_QueryView(object p0) { throw null; }
Mapping_Empty_QueryView_OfType(object p0, object p1)2286         public static string Mapping_Empty_QueryView_OfType(object p0, object p1) { throw null; }
Mapping_Empty_QueryView_OfTypeOnly(object p0, object p1)2287         public static string Mapping_Empty_QueryView_OfTypeOnly(object p0, object p1) { throw null; }
Mapping_EntitySetMismatchOnAssociationSetEnd_QueryView(object p0, object p1, object p2, object p3)2288         public static string Mapping_EntitySetMismatchOnAssociationSetEnd_QueryView(object p0, object p1, object p2, object p3) { throw null; }
Mapping_EnumTypeMappingToNonEnumType(object p0, object p1)2289         public static string Mapping_EnumTypeMappingToNonEnumType(object p0, object p1) { throw null; }
Mapping_Enum_EmptyValue(object p0)2290         public static string Mapping_Enum_EmptyValue(object p0) { throw null; }
Mapping_Enum_InvalidValue(object p0)2291         public static string Mapping_Enum_InvalidValue(object p0) { throw null; }
Mapping_Enum_OCMapping_MemberMismatch(object p0, object p1, object p2, object p3)2292         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)2293         public static string Mapping_Enum_OCMapping_UnderlyingTypesMismatch(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_CannotInferTargetFunctionKeys(object p0)2294         public static string Mapping_FunctionImport_CannotInferTargetFunctionKeys(object p0) { throw null; }
Mapping_FunctionImport_ConditionValueTypeMismatch(object p0, object p1, object p2)2295         public static string Mapping_FunctionImport_ConditionValueTypeMismatch(object p0, object p1, object p2) { throw null; }
Mapping_FunctionImport_EntityTypeMappingForFunctionNotReturningEntitySet(object p0, object p1)2296         public static string Mapping_FunctionImport_EntityTypeMappingForFunctionNotReturningEntitySet(object p0, object p1) { throw null; }
Mapping_FunctionImport_FunctionAmbiguous(object p0)2297         public static string Mapping_FunctionImport_FunctionAmbiguous(object p0) { throw null; }
Mapping_FunctionImport_FunctionImportDoesNotExist(object p0, object p1)2298         public static string Mapping_FunctionImport_FunctionImportDoesNotExist(object p0, object p1) { throw null; }
Mapping_FunctionImport_FunctionImportMappedMultipleTimes(object p0)2299         public static string Mapping_FunctionImport_FunctionImportMappedMultipleTimes(object p0) { throw null; }
Mapping_FunctionImport_ImplicitMappingForAbstractReturnType(object p0, object p1)2300         public static string Mapping_FunctionImport_ImplicitMappingForAbstractReturnType(object p0, object p1) { throw null; }
Mapping_FunctionImport_ImportParameterHasNoCorrespondingTargetParameter(object p0)2301         public static string Mapping_FunctionImport_ImportParameterHasNoCorrespondingTargetParameter(object p0) { throw null; }
Mapping_FunctionImport_IncompatibleEnumParameterType(object p0, object p1, object p2, object p3)2302         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)2303         public static string Mapping_FunctionImport_IncompatibleParameterMode(object p0, object p1, object p2) { throw null; }
Mapping_FunctionImport_IncompatibleParameterType(object p0, object p1, object p2)2304         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)2305         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)2306         public static string Mapping_FunctionImport_PropertyNotMapped(object p0, object p1, object p2) { throw null; }
Mapping_FunctionImport_ResultMappingCountDoesNotMatchResultCount(object p0)2307         public static string Mapping_FunctionImport_ResultMappingCountDoesNotMatchResultCount(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_InvalidCTypeCTExpected(object p0)2308         public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeCTExpected(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_InvalidCTypeETExpected(object p0)2309         public static string Mapping_FunctionImport_ResultMapping_InvalidCTypeETExpected(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_InvalidSType(object p0)2310         public static string Mapping_FunctionImport_ResultMapping_InvalidSType(object p0) { throw null; }
Mapping_FunctionImport_ResultMapping_MappedTypeDoesNotMatchReturnType(object p0, object p1)2311         public static string Mapping_FunctionImport_ResultMapping_MappedTypeDoesNotMatchReturnType(object p0, object p1) { throw null; }
Mapping_FunctionImport_RowsAffectedParameterDoesNotExist(object p0, object p1)2312         public static string Mapping_FunctionImport_RowsAffectedParameterDoesNotExist(object p0, object p1) { throw null; }
Mapping_FunctionImport_RowsAffectedParameterHasWrongMode(object p0, object p1, object p2, object p3)2313         public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongMode(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_RowsAffectedParameterHasWrongType(object p0, object p1)2314         public static string Mapping_FunctionImport_RowsAffectedParameterHasWrongType(object p0, object p1) { throw null; }
Mapping_FunctionImport_ScalarMappingToMulticolumnTVF(object p0, object p1)2315         public static string Mapping_FunctionImport_ScalarMappingToMulticolumnTVF(object p0, object p1) { throw null; }
Mapping_FunctionImport_ScalarMappingTypeMismatch(object p0, object p1, object p2, object p3)2316         public static string Mapping_FunctionImport_ScalarMappingTypeMismatch(object p0, object p1, object p2, object p3) { throw null; }
Mapping_FunctionImport_StoreFunctionDoesNotExist(object p0)2317         public static string Mapping_FunctionImport_StoreFunctionDoesNotExist(object p0) { throw null; }
Mapping_FunctionImport_TargetFunctionMustBeComposable(object p0, object p1)2318         public static string Mapping_FunctionImport_TargetFunctionMustBeComposable(object p0, object p1) { throw null; }
Mapping_FunctionImport_TargetFunctionMustBeNonComposable(object p0, object p1)2319         public static string Mapping_FunctionImport_TargetFunctionMustBeNonComposable(object p0, object p1) { throw null; }
Mapping_FunctionImport_TargetParameterHasNoCorrespondingImportParameter(object p0)2320         public static string Mapping_FunctionImport_TargetParameterHasNoCorrespondingImportParameter(object p0) { throw null; }
Mapping_FunctionImport_UnreachableIsTypeOf(object p0, object p1)2321         public static string Mapping_FunctionImport_UnreachableIsTypeOf(object p0, object p1) { throw null; }
Mapping_FunctionImport_UnreachableType(object p0, object p1)2322         public static string Mapping_FunctionImport_UnreachableType(object p0, object p1) { throw null; }
Mapping_FunctionImport_UnsupportedType(object p0, object p1)2323         public static string Mapping_FunctionImport_UnsupportedType(object p0, object p1) { throw null; }
Mapping_InvalidContent_AbstractEntity_FunctionMapping(object p0)2324         public static string Mapping_InvalidContent_AbstractEntity_FunctionMapping(object p0) { throw null; }
Mapping_InvalidContent_AbstractEntity_IsOfType(object p0)2325         public static string Mapping_InvalidContent_AbstractEntity_IsOfType(object p0) { throw null; }
Mapping_InvalidContent_AbstractEntity_Type(object p0)2326         public static string Mapping_InvalidContent_AbstractEntity_Type(object p0) { throw null; }
Mapping_InvalidContent_AssociationSet_Condition(object p0)2327         public static string Mapping_InvalidContent_AssociationSet_Condition(object p0) { throw null; }
Mapping_InvalidContent_Association_Set(object p0)2328         public static string Mapping_InvalidContent_Association_Set(object p0) { throw null; }
Mapping_InvalidContent_Association_Type(object p0)2329         public static string Mapping_InvalidContent_Association_Type(object p0) { throw null; }
Mapping_InvalidContent_Cdm_Member(object p0)2330         public static string Mapping_InvalidContent_Cdm_Member(object p0) { throw null; }
Mapping_InvalidContent_Column(object p0)2331         public static string Mapping_InvalidContent_Column(object p0) { throw null; }
Mapping_InvalidContent_Complex_Type(object p0)2332         public static string Mapping_InvalidContent_Complex_Type(object p0) { throw null; }
Mapping_InvalidContent_ConditionMapping_Computed(object p0)2333         public static string Mapping_InvalidContent_ConditionMapping_Computed(object p0) { throw null; }
Mapping_InvalidContent_ConditionMapping_InvalidMember(object p0)2334         public static string Mapping_InvalidContent_ConditionMapping_InvalidMember(object p0) { throw null; }
Mapping_InvalidContent_ConditionMapping_InvalidPrimitiveTypeKind(object p0, object p1)2335         public static string Mapping_InvalidContent_ConditionMapping_InvalidPrimitiveTypeKind(object p0, object p1) { throw null; }
Mapping_InvalidContent_Duplicate_Cdm_Member(object p0)2336         public static string Mapping_InvalidContent_Duplicate_Cdm_Member(object p0) { throw null; }
Mapping_InvalidContent_Duplicate_Condition_Member(object p0)2337         public static string Mapping_InvalidContent_Duplicate_Condition_Member(object p0) { throw null; }
Mapping_InvalidContent_Emtpty_SetMap(object p0)2338         public static string Mapping_InvalidContent_Emtpty_SetMap(object p0) { throw null; }
Mapping_InvalidContent_End(object p0)2339         public static string Mapping_InvalidContent_End(object p0) { throw null; }
Mapping_InvalidContent_EndProperty(object p0)2340         public static string Mapping_InvalidContent_EndProperty(object p0) { throw null; }
Mapping_InvalidContent_EntityContainer(object p0)2341         public static string Mapping_InvalidContent_EntityContainer(object p0) { throw null; }
Mapping_InvalidContent_Entity_Set(object p0)2342         public static string Mapping_InvalidContent_Entity_Set(object p0) { throw null; }
Mapping_InvalidContent_Entity_Type(object p0)2343         public static string Mapping_InvalidContent_Entity_Type(object p0) { throw null; }
Mapping_InvalidContent_Entity_Type_For_Entity_Set(object p0, object p1, object p2)2344         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)2345         public static string Mapping_InvalidContent_ForeignKey_Association_Set(object p0) { throw null; }
Mapping_InvalidContent_ForeignKey_Association_Set_PKtoPK(object p0)2346         public static string Mapping_InvalidContent_ForeignKey_Association_Set_PKtoPK(object p0) { throw null; }
Mapping_InvalidContent_StorageEntityContainer(object p0)2347         public static string Mapping_InvalidContent_StorageEntityContainer(object p0) { throw null; }
Mapping_InvalidContent_Table(object p0)2348         public static string Mapping_InvalidContent_Table(object p0) { throw null; }
Mapping_InvalidMappingSchema_Parsing(object p0)2349         public static string Mapping_InvalidMappingSchema_Parsing(object p0) { throw null; }
Mapping_InvalidMappingSchema_validation(object p0)2350         public static string Mapping_InvalidMappingSchema_validation(object p0) { throw null; }
Mapping_Invalid_Association_Type_For_Association_Set(object p0, object p1, object p2)2351         public static string Mapping_Invalid_Association_Type_For_Association_Set(object p0, object p1, object p2) { throw null; }
Mapping_Invalid_CSide_ScalarProperty(object p0)2352         public static string Mapping_Invalid_CSide_ScalarProperty(object p0) { throw null; }
Mapping_Invalid_CSRootElementMissing(object p0, object p1, object p2)2353         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)2354         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)2355         public static string Mapping_Invalid_QueryView(object p0, object p1) { throw null; }
Mapping_Invalid_QueryView2(object p0, object p1)2356         public static string Mapping_Invalid_QueryView2(object p0, object p1) { throw null; }
Mapping_Invalid_QueryView_Type(object p0)2357         public static string Mapping_Invalid_QueryView_Type(object p0) { throw null; }
Mapping_Invalid_Query_Views_MissingSetClosure(object p0)2358         public static string Mapping_Invalid_Query_Views_MissingSetClosure(object p0) { throw null; }
Mapping_ItemWithSameNameExistsBothInCSpaceAndSSpace(object p0)2359         public static string Mapping_ItemWithSameNameExistsBothInCSpaceAndSSpace(object p0) { throw null; }
Mapping_ModificationFunction_AmbiguousFunction(object p0)2360         public static string Mapping_ModificationFunction_AmbiguousFunction(object p0) { throw null; }
Mapping_ModificationFunction_AmbiguousResultBinding(object p0, object p1)2361         public static string Mapping_ModificationFunction_AmbiguousResultBinding(object p0, object p1) { throw null; }
Mapping_ModificationFunction_AssociationEndMappingForeignKeyAssociation(object p0)2362         public static string Mapping_ModificationFunction_AssociationEndMappingForeignKeyAssociation(object p0) { throw null; }
Mapping_ModificationFunction_AssociationEndMappingInvalidForEntityType(object p0, object p1, object p2)2363         public static string Mapping_ModificationFunction_AssociationEndMappingInvalidForEntityType(object p0, object p1, object p2) { throw null; }
Mapping_ModificationFunction_AssociationSetAmbiguous(object p0)2364         public static string Mapping_ModificationFunction_AssociationSetAmbiguous(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetCardinality(object p0)2365         public static string Mapping_ModificationFunction_AssociationSetCardinality(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetDoesNotExist(object p0)2366         public static string Mapping_ModificationFunction_AssociationSetDoesNotExist(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetFromRoleIsNotEntitySet(object p0)2367         public static string Mapping_ModificationFunction_AssociationSetFromRoleIsNotEntitySet(object p0) { throw null; }
Mapping_ModificationFunction_AssociationSetNotMappedForOperation(object p0, object p1, object p2, object p3)2368         public static string Mapping_ModificationFunction_AssociationSetNotMappedForOperation(object p0, object p1, object p2, object p3) { throw null; }
Mapping_ModificationFunction_AssociationSetRoleDoesNotExist(object p0)2369         public static string Mapping_ModificationFunction_AssociationSetRoleDoesNotExist(object p0) { throw null; }
Mapping_ModificationFunction_ComplexTypeNotFound(object p0)2370         public static string Mapping_ModificationFunction_ComplexTypeNotFound(object p0) { throw null; }
Mapping_ModificationFunction_MissingEntityType(object p0)2371         public static string Mapping_ModificationFunction_MissingEntityType(object p0) { throw null; }
Mapping_ModificationFunction_MissingParameter(object p0, object p1)2372         public static string Mapping_ModificationFunction_MissingParameter(object p0, object p1) { throw null; }
Mapping_ModificationFunction_MissingSetClosure(object p0)2373         public static string Mapping_ModificationFunction_MissingSetClosure(object p0) { throw null; }
Mapping_ModificationFunction_MultipleEndsOfAssociationMapped(object p0, object p1, object p2)2374         public static string Mapping_ModificationFunction_MultipleEndsOfAssociationMapped(object p0, object p1, object p2) { throw null; }
Mapping_ModificationFunction_NotValidFunction(object p0)2375         public static string Mapping_ModificationFunction_NotValidFunction(object p0) { throw null; }
Mapping_ModificationFunction_NotValidFunctionParameter(object p0, object p1, object p2)2376         public static string Mapping_ModificationFunction_NotValidFunctionParameter(object p0, object p1, object p2) { throw null; }
Mapping_ModificationFunction_ParameterBoundTwice(object p0)2377         public static string Mapping_ModificationFunction_ParameterBoundTwice(object p0) { throw null; }
Mapping_ModificationFunction_ParameterNotFound(object p0, object p1)2378         public static string Mapping_ModificationFunction_ParameterNotFound(object p0, object p1) { throw null; }
Mapping_ModificationFunction_PropertyNotFound(object p0, object p1)2379         public static string Mapping_ModificationFunction_PropertyNotFound(object p0, object p1) { throw null; }
Mapping_ModificationFunction_PropertyNotKey(object p0, object p1)2380         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)2381         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)2382         public static string Mapping_ModificationFunction_RedundantEntityTypeMapping(object p0) { throw null; }
Mapping_ModificationFunction_UnknownFunction(object p0)2383         public static string Mapping_ModificationFunction_UnknownFunction(object p0) { throw null; }
Mapping_ModificationFunction_WrongComplexType(object p0, object p1)2384         public static string Mapping_ModificationFunction_WrongComplexType(object p0, object p1) { throw null; }
Mapping_NotFound_EntityContainer(object p0)2385         public static string Mapping_NotFound_EntityContainer(object p0) { throw null; }
Mapping_Object_InvalidType(object p0)2386         public static string Mapping_Object_InvalidType(object p0) { throw null; }
Mapping_ProviderReturnsNullType(object p0)2387         public static string Mapping_ProviderReturnsNullType(object p0) { throw null; }
Mapping_Provider_WrongConnectionType(object p0)2388         public static string Mapping_Provider_WrongConnectionType(object p0) { throw null; }
Mapping_Provider_WrongManifestType(object p0)2389         public static string Mapping_Provider_WrongManifestType(object p0) { throw null; }
Mapping_QueryViewMultipleTypeInTypeName(object p0)2390         public static string Mapping_QueryViewMultipleTypeInTypeName(object p0) { throw null; }
Mapping_QueryView_Duplicate_OfType(object p0, object p1)2391         public static string Mapping_QueryView_Duplicate_OfType(object p0, object p1) { throw null; }
Mapping_QueryView_Duplicate_OfTypeOnly(object p0, object p1)2392         public static string Mapping_QueryView_Duplicate_OfTypeOnly(object p0, object p1) { throw null; }
Mapping_QueryView_For_Base_Type(object p0, object p1)2393         public static string Mapping_QueryView_For_Base_Type(object p0, object p1) { throw null; }
Mapping_QueryView_PropertyMaps(object p0)2394         public static string Mapping_QueryView_PropertyMaps(object p0) { throw null; }
Mapping_QueryView_TypeName_Not_Defined(object p0)2395         public static string Mapping_QueryView_TypeName_Not_Defined(object p0) { throw null; }
Mapping_Storage_InvalidSpace(object p0)2396         public static string Mapping_Storage_InvalidSpace(object p0) { throw null; }
Mapping_StoreTypeMismatch_ScalarPropertyMapping(object p0, object p1)2397         public static string Mapping_StoreTypeMismatch_ScalarPropertyMapping(object p0, object p1) { throw null; }
Mapping_TableName_QueryView(object p0)2398         public static string Mapping_TableName_QueryView(object p0) { throw null; }
Mapping_UnsupportedExpressionKind_QueryView(object p0, object p1, object p2)2399         public static string Mapping_UnsupportedExpressionKind_QueryView(object p0, object p1, object p2) { throw null; }
Mapping_UnsupportedFunctionCall_QueryView(object p0, object p1)2400         public static string Mapping_UnsupportedFunctionCall_QueryView(object p0, object p1) { throw null; }
Mapping_UnsupportedInitialization_QueryView(object p0, object p1)2401         public static string Mapping_UnsupportedInitialization_QueryView(object p0, object p1) { throw null; }
Mapping_UnsupportedPropertyKind_QueryView(object p0, object p1, object p2)2402         public static string Mapping_UnsupportedPropertyKind_QueryView(object p0, object p1, object p2) { throw null; }
Mapping_UnsupportedScanTarget_QueryView(object p0, object p1)2403         public static string Mapping_UnsupportedScanTarget_QueryView(object p0, object p1) { throw null; }
Mapping_Views_For_Extent_Not_Generated(object p0, object p1)2404         public static string Mapping_Views_For_Extent_Not_Generated(object p0, object p1) { throw null; }
Materializer_AddedEntityAlreadyExists(object p0)2405         public static string Materializer_AddedEntityAlreadyExists(object p0) { throw null; }
Materializer_InvalidCastNullable(object p0, object p1)2406         public static string Materializer_InvalidCastNullable(object p0, object p1) { throw null; }
Materializer_InvalidCastReference(object p0, object p1)2407         public static string Materializer_InvalidCastReference(object p0, object p1) { throw null; }
Materializer_NullReferenceCast(object p0)2408         public static string Materializer_NullReferenceCast(object p0) { throw null; }
Materializer_PropertyIsNotNullableWithName(object p0)2409         public static string Materializer_PropertyIsNotNullableWithName(object p0) { throw null; }
Materializer_RecyclingEntity(object p0, object p1, object p2, object p3)2410         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)2411         public static string Materializer_SetInvalidValue(object p0, object p1, object p2, object p3) { throw null; }
MemberDoesNotBelongToEntityContainer(object p0, object p1)2412         public static string MemberDoesNotBelongToEntityContainer(object p0, object p1) { throw null; }
MemberInvalidIdentity(object p0)2413         public static string MemberInvalidIdentity(object p0) { throw null; }
MinAndMaxMustBePositive(object p0, object p1)2414         public static string MinAndMaxMustBePositive(object p0, object p1) { throw null; }
MinAndMaxValueMustBeDifferentForNonConstantFacet(object p0, object p1)2415         public static string MinAndMaxValueMustBeDifferentForNonConstantFacet(object p0, object p1) { throw null; }
MinAndMaxValueMustBeSameForConstantFacet(object p0, object p1)2416         public static string MinAndMaxValueMustBeSameForConstantFacet(object p0, object p1) { throw null; }
MinMustBeLessThanMax(object p0, object p1, object p2)2417         public static string MinMustBeLessThanMax(object p0, object p1, object p2) { throw null; }
MissingConstraintOnRelationshipType(object p0)2418         public static string MissingConstraintOnRelationshipType(object p0) { throw null; }
MissingDefaultValueForConstantFacet(object p0, object p1)2419         public static string MissingDefaultValueForConstantFacet(object p0, object p1) { throw null; }
MissingEntityContainerEnd(object p0, object p1)2420         public static string MissingEntityContainerEnd(object p0, object p1) { throw null; }
MissingFacetDescription(object p0, object p1, object p2)2421         public static string MissingFacetDescription(object p0, object p1, object p2) { throw null; }
MoreThanOneItemMatchesIdentity(object p0)2422         public static string MoreThanOneItemMatchesIdentity(object p0) { throw null; }
MultipleDefinitionsOfParameter(object p0)2423         public static string MultipleDefinitionsOfParameter(object p0) { throw null; }
MultipleDefinitionsOfVariable(object p0)2424         public static string MultipleDefinitionsOfVariable(object p0) { throw null; }
NamespaceAliasAlreadyUsed(object p0)2425         public static string NamespaceAliasAlreadyUsed(object p0) { throw null; }
NamespaceAlreadyImported(object p0)2426         public static string NamespaceAlreadyImported(object p0) { throw null; }
NavigationPropertyRelationshipEndTypeMismatch(object p0, object p1, object p2, object p3, object p4)2427         public static string NavigationPropertyRelationshipEndTypeMismatch(object p0, object p1, object p2, object p3, object p4) { throw null; }
NeedNotUseSystemNamespaceInUsing(object p0)2428         public static string NeedNotUseSystemNamespaceInUsing(object p0) { throw null; }
NestedAggregateCannotBeUsedInAggregate(object p0, object p1)2429         public static string NestedAggregateCannotBeUsedInAggregate(object p0, object p1) { throw null; }
NestedClassNotSupported(object p0, object p1)2430         public static string NestedClassNotSupported(object p0, object p1) { throw null; }
NewTypeConflictsWithExistingType(object p0, object p1)2431         public static string NewTypeConflictsWithExistingType(object p0, object p1) { throw null; }
NoAggrFunctionOverloadMatch(object p0, object p1, object p2)2432         public static string NoAggrFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoCanonicalAggrFunctionOverloadMatch(object p0, object p1, object p2)2433         public static string NoCanonicalAggrFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoCanonicalFunctionOverloadMatch(object p0, object p1, object p2)2434         public static string NoCanonicalFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoCodeGenNamespaceInStructuralAnnotation(object p0)2435         public static string NoCodeGenNamespaceInStructuralAnnotation(object p0) { throw null; }
NoCollectionForSpace(object p0)2436         public static string NoCollectionForSpace(object p0) { throw null; }
NoFunctionOverloadMatch(object p0, object p1, object p2)2437         public static string NoFunctionOverloadMatch(object p0, object p1, object p2) { throw null; }
NoStoreTypeForEdmType(object p0, object p1)2438         public static string NoStoreTypeForEdmType(object p0, object p1) { throw null; }
NotAMemberOfCollection(object p0, object p1)2439         public static string NotAMemberOfCollection(object p0, object p1) { throw null; }
NotAMemberOfType(object p0, object p1)2440         public static string NotAMemberOfType(object p0, object p1) { throw null; }
NotASuperOrSubType(object p0, object p1)2441         public static string NotASuperOrSubType(object p0, object p1) { throw null; }
NotInNamespaceAlias(object p0, object p1, object p2)2442         public static string NotInNamespaceAlias(object p0, object p1, object p2) { throw null; }
NotInNamespaceNoAlias(object p0, object p1)2443         public static string NotInNamespaceNoAlias(object p0, object p1) { throw null; }
NotNamespaceQualified(object p0)2444         public static string NotNamespaceQualified(object p0) { throw null; }
NullParameterForEdmRelationshipAttribute(object p0, object p1)2445         public static string NullParameterForEdmRelationshipAttribute(object p0, object p1) { throw null; }
NullRelationshipNameforEdmRelationshipAttribute(object p0)2446         public static string NullRelationshipNameforEdmRelationshipAttribute(object p0) { throw null; }
NumberOfTypeCtorIsLessThenFormalSpec(object p0)2447         public static string NumberOfTypeCtorIsLessThenFormalSpec(object p0) { throw null; }
NumberOfTypeCtorIsMoreThenFormalSpec(object p0)2448         public static string NumberOfTypeCtorIsMoreThenFormalSpec(object p0) { throw null; }
ObjectContext_AcceptAllChangesFailure(object p0)2449         public static string ObjectContext_AcceptAllChangesFailure(object p0) { throw null; }
ObjectContext_CannotExplicitlyLoadDetachedRelationships(object p0)2450         public static string ObjectContext_CannotExplicitlyLoadDetachedRelationships(object p0) { throw null; }
ObjectContext_CannotLoadReferencesUsingDifferentContext(object p0)2451         public static string ObjectContext_CannotLoadReferencesUsingDifferentContext(object p0) { throw null; }
ObjectContext_ClientEntityRemovedFromStore(object p0)2452         public static string ObjectContext_ClientEntityRemovedFromStore(object p0) { throw null; }
ObjectContext_EntitiesHaveDifferentType(object p0, object p1)2453         public static string ObjectContext_EntitiesHaveDifferentType(object p0, object p1) { throw null; }
ObjectContext_EntityContainerNotFoundForName(object p0)2454         public static string ObjectContext_EntityContainerNotFoundForName(object p0) { throw null; }
ObjectContext_EntityMustBeUnchangedOrModified(object p0)2455         public static string ObjectContext_EntityMustBeUnchangedOrModified(object p0) { throw null; }
ObjectContext_EntityMustBeUnchangedOrModifiedOrDeleted(object p0)2456         public static string ObjectContext_EntityMustBeUnchangedOrModifiedOrDeleted(object p0) { throw null; }
ObjectContext_EntityNotInObjectSet_Delete(object p0, object p1, object p2, object p3)2457         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)2458         public static string ObjectContext_EntityNotInObjectSet_Detach(object p0, object p1, object p2, object p3) { throw null; }
ObjectContext_EntitySetNotFoundForName(object p0)2459         public static string ObjectContext_EntitySetNotFoundForName(object p0) { throw null; }
ObjectContext_ExecuteFunctionCalledWithNonQueryFunction(object p0)2460         public static string ObjectContext_ExecuteFunctionCalledWithNonQueryFunction(object p0) { throw null; }
ObjectContext_ExecuteFunctionCalledWithNullParameter(object p0)2461         public static string ObjectContext_ExecuteFunctionCalledWithNullParameter(object p0) { throw null; }
ObjectContext_ExecuteFunctionCalledWithScalarFunction(object p0, object p1)2462         public static string ObjectContext_ExecuteFunctionCalledWithScalarFunction(object p0, object p1) { throw null; }
ObjectContext_ExecuteFunctionTypeMismatch(object p0, object p1)2463         public static string ObjectContext_ExecuteFunctionTypeMismatch(object p0, object p1) { throw null; }
ObjectContext_InvalidDefaultContainerName(object p0)2464         public static string ObjectContext_InvalidDefaultContainerName(object p0) { throw null; }
ObjectContext_InvalidEntitySetForStoreQuery(object p0, object p1, object p2)2465         public static string ObjectContext_InvalidEntitySetForStoreQuery(object p0, object p1, object p2) { throw null; }
ObjectContext_InvalidEntitySetInKey(object p0, object p1, object p2, object p3)2466         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)2467         public static string ObjectContext_InvalidEntitySetInKeyFromName(object p0, object p1, object p2, object p3, object p4) { throw null; }
ObjectContext_InvalidEntitySetOnEntity(object p0, object p1)2468         public static string ObjectContext_InvalidEntitySetOnEntity(object p0, object p1) { throw null; }
ObjectContext_InvalidObjectSetTypeForEntitySet(object p0, object p1, object p2)2469         public static string ObjectContext_InvalidObjectSetTypeForEntitySet(object p0, object p1, object p2) { throw null; }
ObjectContext_InvalidTypeForStoreQuery(object p0)2470         public static string ObjectContext_InvalidTypeForStoreQuery(object p0) { throw null; }
ObjectContext_MultipleEntitySetsFoundInAllContainers(object p0)2471         public static string ObjectContext_MultipleEntitySetsFoundInAllContainers(object p0) { throw null; }
ObjectContext_MultipleEntitySetsFoundInSingleContainer(object p0, object p1)2472         public static string ObjectContext_MultipleEntitySetsFoundInSingleContainer(object p0, object p1) { throw null; }
ObjectContext_NoEntitySetFoundForType(object p0)2473         public static string ObjectContext_NoEntitySetFoundForType(object p0) { throw null; }
ObjectContext_NoMappingForEntityType(object p0)2474         public static string ObjectContext_NoMappingForEntityType(object p0) { throw null; }
ObjectContext_NthElementInAddedState(object p0)2475         public static string ObjectContext_NthElementInAddedState(object p0) { throw null; }
ObjectContext_NthElementIsDuplicate(object p0)2476         public static string ObjectContext_NthElementIsDuplicate(object p0) { throw null; }
ObjectContext_NthElementIsNull(object p0)2477         public static string ObjectContext_NthElementIsNull(object p0) { throw null; }
ObjectContext_NthElementNotInObjectStateManager(object p0)2478         public static string ObjectContext_NthElementNotInObjectStateManager(object p0) { throw null; }
ObjectContext_TwoPropertiesMappedToSameColumn(object p0, object p1)2479         public static string ObjectContext_TwoPropertiesMappedToSameColumn(object p0, object p1) { throw null; }
ObjectParameterCollection_DuplicateParameterName(object p0)2480         public static string ObjectParameterCollection_DuplicateParameterName(object p0) { throw null; }
ObjectParameterCollection_ParameterAlreadyExists(object p0)2481         public static string ObjectParameterCollection_ParameterAlreadyExists(object p0) { throw null; }
ObjectParameterCollection_ParameterNameNotFound(object p0)2482         public static string ObjectParameterCollection_ParameterNameNotFound(object p0) { throw null; }
ObjectParameter_InvalidParameterName(object p0)2483         public static string ObjectParameter_InvalidParameterName(object p0) { throw null; }
ObjectParameter_InvalidParameterType(object p0)2484         public static string ObjectParameter_InvalidParameterType(object p0) { throw null; }
ObjectQuery_InvalidQueryName(object p0)2485         public static string ObjectQuery_InvalidQueryName(object p0) { throw null; }
ObjectQuery_QueryBuilder_InvalidResultType(object p0)2486         public static string ObjectQuery_QueryBuilder_InvalidResultType(object p0) { throw null; }
ObjectQuery_Span_NoNavProp(object p0, object p1)2487         public static string ObjectQuery_Span_NoNavProp(object p0, object p1) { throw null; }
ObjectQuery_UnableToMaterializeArbitaryProjectionType(object p0)2488         public static string ObjectQuery_UnableToMaterializeArbitaryProjectionType(object p0) { throw null; }
ObjectQuery_UnableToMaterializeArray(object p0, object p1)2489         public static string ObjectQuery_UnableToMaterializeArray(object p0, object p1) { throw null; }
ObjectStateEntry_CannotModifyKeyProperty(object p0)2490         public static string ObjectStateEntry_CannotModifyKeyProperty(object p0) { throw null; }
ObjectStateEntry_ChangedInDifferentStateFromChanging(object p0, object p1)2491         public static string ObjectStateEntry_ChangedInDifferentStateFromChanging(object p0, object p1) { throw null; }
ObjectStateEntry_ChangeOnUnmappedComplexProperty(object p0)2492         public static string ObjectStateEntry_ChangeOnUnmappedComplexProperty(object p0) { throw null; }
ObjectStateEntry_ChangeOnUnmappedProperty(object p0)2493         public static string ObjectStateEntry_ChangeOnUnmappedProperty(object p0) { throw null; }
ObjectStateEntry_ComplexObjectUsedMultipleTimes(object p0, object p1)2494         public static string ObjectStateEntry_ComplexObjectUsedMultipleTimes(object p0, object p1) { throw null; }
ObjectStateEntry_NullOriginalValueForNonNullableProperty(object p0, object p1, object p2)2495         public static string ObjectStateEntry_NullOriginalValueForNonNullableProperty(object p0, object p1, object p2) { throw null; }
ObjectStateEntry_SetModifiedOnInvalidProperty(object p0)2496         public static string ObjectStateEntry_SetModifiedOnInvalidProperty(object p0) { throw null; }
ObjectStateEntry_SetModifiedStates(object p0)2497         public static string ObjectStateEntry_SetModifiedStates(object p0) { throw null; }
ObjectStateEntry_SetOriginalComplexProperties(object p0)2498         public static string ObjectStateEntry_SetOriginalComplexProperties(object p0) { throw null; }
ObjectStateEntry_SetOriginalPrimaryKey(object p0)2499         public static string ObjectStateEntry_SetOriginalPrimaryKey(object p0) { throw null; }
ObjectStateEntry_UnableToEnumerateCollection(object p0, object p1)2500         public static string ObjectStateEntry_UnableToEnumerateCollection(object p0, object p1) { throw null; }
ObjectStateManager_ConflictingChangesOfRelationshipDetected(object p0, object p1)2501         public static string ObjectStateManager_ConflictingChangesOfRelationshipDetected(object p0, object p1) { throw null; }
ObjectStateManager_DoesnotAllowToReAddUnchangedOrModifiedOrDeletedEntity(object p0)2502         public static string ObjectStateManager_DoesnotAllowToReAddUnchangedOrModifiedOrDeletedEntity(object p0) { throw null; }
ObjectStateManager_EntityTypeDoesnotMatchtoEntitySetType(object p0, object p1)2503         public static string ObjectStateManager_EntityTypeDoesnotMatchtoEntitySetType(object p0, object p1) { throw null; }
ObjectStateManager_GetEntityKeyRequiresObjectToHaveAKey(object p0)2504         public static string ObjectStateManager_GetEntityKeyRequiresObjectToHaveAKey(object p0) { throw null; }
ObjectStateManager_NoEntryExistsForObject(object p0)2505         public static string ObjectStateManager_NoEntryExistsForObject(object p0) { throw null; }
ObjectView_CannotResolveTheEntitySet(object p0)2506         public static string ObjectView_CannotResolveTheEntitySet(object p0) { throw null; }
OfTypeExpressionElementTypeMustBeEntityType(object p0, object p1)2507         public static string OfTypeExpressionElementTypeMustBeEntityType(object p0, object p1) { throw null; }
OfTypeExpressionElementTypeMustBeNominalType(object p0, object p1)2508         public static string OfTypeExpressionElementTypeMustBeNominalType(object p0, object p1) { throw null; }
OfTypeOnlyTypeArgumentCannotBeAbstract(object p0)2509         public static string OfTypeOnlyTypeArgumentCannotBeAbstract(object p0) { throw null; }
ParameterNameAlreadyDefinedDuplicate(object p0)2510         public static string ParameterNameAlreadyDefinedDuplicate(object p0) { throw null; }
ParameterTypeNotSupported(object p0, object p1)2511         public static string ParameterTypeNotSupported(object p0, object p1) { throw null; }
ParameterWasNotDefined(object p0)2512         public static string ParameterWasNotDefined(object p0) { throw null; }
PlaceholderExpressionMustBeCompatibleWithEdm64(object p0, object p1)2513         public static string PlaceholderExpressionMustBeCompatibleWithEdm64(object p0, object p1) { throw null; }
PlaceholderExpressionMustBeConstant(object p0)2514         public static string PlaceholderExpressionMustBeConstant(object p0) { throw null; }
PlaceholderExpressionMustBeGreaterThanOrEqualToZero(object p0)2515         public static string PlaceholderExpressionMustBeGreaterThanOrEqualToZero(object p0) { throw null; }
PlaceholderSetArgTypeIsNotEqualComparable(object p0, object p1, object p2)2516         public static string PlaceholderSetArgTypeIsNotEqualComparable(object p0, object p1, object p2) { throw null; }
PocoEntityWrapper_UnableToMaterializeArbitaryNavPropType(object p0, object p1)2517         public static string PocoEntityWrapper_UnableToMaterializeArbitaryNavPropType(object p0, object p1) { throw null; }
PocoEntityWrapper_UnableToSetFieldOrProperty(object p0, object p1)2518         public static string PocoEntityWrapper_UnableToSetFieldOrProperty(object p0, object p1) { throw null; }
PocoEntityWrapper_UnexpectedTypeForNavigationProperty(object p0, object p1)2519         public static string PocoEntityWrapper_UnexpectedTypeForNavigationProperty(object p0, object p1) { throw null; }
PrecisionMustBeGreaterThanScale(object p0, object p1)2520         public static string PrecisionMustBeGreaterThanScale(object p0, object p1) { throw null; }
PrecisionOutOfRange(object p0, object p1, object p2, object p3)2521         public static string PrecisionOutOfRange(object p0, object p1, object p2, object p3) { throw null; }
PropertyNameAlreadyDefinedDuplicate(object p0)2522         public static string PropertyNameAlreadyDefinedDuplicate(object p0) { throw null; }
PropertyTypeAlreadyDefined(object p0)2523         public static string PropertyTypeAlreadyDefined(object p0) { throw null; }
ProviderDoesNotSupportType(object p0)2524         public static string ProviderDoesNotSupportType(object p0) { throw null; }
ProviderReturnedNullForGetDbInformation(object p0)2525         public static string ProviderReturnedNullForGetDbInformation(object p0) { throw null; }
RefArgIsNotOfEntityType(object p0)2526         public static string RefArgIsNotOfEntityType(object p0) { throw null; }
ReferenceToNonEntityType(object p0)2527         public static string ReferenceToNonEntityType(object p0) { throw null; }
RefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1)2528         public static string RefTypeIdentifierMustSpecifyAnEntityType(object p0, object p1) { throw null; }
RelatedEndExprTypeMustBePromotoableToToEnd(object p0, object p1)2529         public static string RelatedEndExprTypeMustBePromotoableToToEnd(object p0, object p1) { throw null; }
RelatedEnd_CannotAddToFixedSizeArray(object p0)2530         public static string RelatedEnd_CannotAddToFixedSizeArray(object p0) { throw null; }
RelatedEnd_CannotCreateRelationshipBetweenTrackedAndNoTrackedEntities(object p0)2531         public static string RelatedEnd_CannotCreateRelationshipBetweenTrackedAndNoTrackedEntities(object p0) { throw null; }
RelatedEnd_CannotRemoveFromFixedSizeArray(object p0)2532         public static string RelatedEnd_CannotRemoveFromFixedSizeArray(object p0) { throw null; }
RelatedEnd_CannotSerialize(object p0)2533         public static string RelatedEnd_CannotSerialize(object p0) { throw null; }
RelatedEnd_EntitySetIsNotValidForRelationship(object p0, object p1, object p2, object p3, object p4)2534         public static string RelatedEnd_EntitySetIsNotValidForRelationship(object p0, object p1, object p2, object p3, object p4) { throw null; }
RelatedEnd_InvalidContainedType_Collection(object p0, object p1)2535         public static string RelatedEnd_InvalidContainedType_Collection(object p0, object p1) { throw null; }
RelatedEnd_InvalidContainedType_Reference(object p0, object p1)2536         public static string RelatedEnd_InvalidContainedType_Reference(object p0, object p1) { throw null; }
RelatedEnd_InvalidNthElementContextForAttach(object p0)2537         public static string RelatedEnd_InvalidNthElementContextForAttach(object p0) { throw null; }
RelatedEnd_InvalidNthElementNullForAttach(object p0)2538         public static string RelatedEnd_InvalidNthElementNullForAttach(object p0) { throw null; }
RelatedEnd_InvalidNthElementStateForAttach(object p0)2539         public static string RelatedEnd_InvalidNthElementStateForAttach(object p0) { throw null; }
RelatedEnd_InvalidRelationshipFixupDetected(object p0, object p1)2540         public static string RelatedEnd_InvalidRelationshipFixupDetected(object p0, object p1) { throw null; }
RelatedEnd_MismatchedMergeOptionOnLoad(object p0)2541         public static string RelatedEnd_MismatchedMergeOptionOnLoad(object p0) { throw null; }
RelatedEnd_RelatedEndNotAttachedToContext(object p0)2542         public static string RelatedEnd_RelatedEndNotAttachedToContext(object p0) { throw null; }
RelationshipManager_CollectionAlreadyInitialized(object p0)2543         public static string RelationshipManager_CollectionAlreadyInitialized(object p0) { throw null; }
RelationshipManager_CollectionRelationshipManagerAttached(object p0)2544         public static string RelationshipManager_CollectionRelationshipManagerAttached(object p0) { throw null; }
RelationshipManager_InvalidTargetRole(object p0, object p1)2545         public static string RelationshipManager_InvalidTargetRole(object p0, object p1) { throw null; }
RelationshipManager_NavigationPropertyNotFound(object p0)2546         public static string RelationshipManager_NavigationPropertyNotFound(object p0) { throw null; }
RelationshipManager_OwnerIsNotSourceType(object p0, object p1, object p2, object p3)2547         public static string RelationshipManager_OwnerIsNotSourceType(object p0, object p1, object p2, object p3) { throw null; }
RelationshipManager_ReferenceAlreadyInitialized(object p0)2548         public static string RelationshipManager_ReferenceAlreadyInitialized(object p0) { throw null; }
RelationshipManager_RelationshipManagerAttached(object p0)2549         public static string RelationshipManager_RelationshipManagerAttached(object p0) { throw null; }
RelationshipManager_UnableToFindRelationshipTypeInMetadata(object p0)2550         public static string RelationshipManager_UnableToFindRelationshipTypeInMetadata(object p0) { throw null; }
RelationshipNameInNavigationPropertyNotValid(object p0, object p1, object p2)2551         public static string RelationshipNameInNavigationPropertyNotValid(object p0, object p1, object p2) { throw null; }
RelationshipTargetMustBeUnique(object p0)2552         public static string RelationshipTargetMustBeUnique(object p0) { throw null; }
RelationshipTypeExpected(object p0)2553         public static string RelationshipTypeExpected(object p0) { throw null; }
RequiredFacetMissing(object p0, object p1)2554         public static string RequiredFacetMissing(object p0, object p1) { throw null; }
RoleTypeInEdmRelationshipAttributeIsInvalidType(object p0, object p1, object p2)2555         public static string RoleTypeInEdmRelationshipAttributeIsInvalidType(object p0, object p1, object p2) { throw null; }
SameRoleNameOnRelationshipAttribute(object p0, object p1)2556         public static string SameRoleNameOnRelationshipAttribute(object p0, object p1) { throw null; }
SameRoleReferredInReferentialConstraint(object p0)2557         public static string SameRoleReferredInReferentialConstraint(object p0) { throw null; }
ScaleOutOfRange(object p0, object p1, object p2, object p3)2558         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)2559         public static string SimilarRelationshipEnd(object p0, object p1, object p2, object p3, object p4) { throw null; }
SourceTypeMustBePromotoableToFromEndRelationType(object p0, object p1)2560         public static string SourceTypeMustBePromotoableToFromEndRelationType(object p0, object p1) { throw null; }
SqlGen_CanonicalFunctionNotSupportedPriorSql10(object p0)2561         public static string SqlGen_CanonicalFunctionNotSupportedPriorSql10(object p0) { throw null; }
SqlGen_InvalidDatePartArgumentExpression(object p0, object p1)2562         public static string SqlGen_InvalidDatePartArgumentExpression(object p0, object p1) { throw null; }
SqlGen_InvalidDatePartArgumentValue(object p0, object p1, object p2)2563         public static string SqlGen_InvalidDatePartArgumentValue(object p0, object p1, object p2) { throw null; }
SqlGen_PrimitiveTypeNotSupportedPriorSql10(object p0)2564         public static string SqlGen_PrimitiveTypeNotSupportedPriorSql10(object p0) { throw null; }
SqlGen_TypedNaNNotSupported(object p0)2565         public static string SqlGen_TypedNaNNotSupported(object p0) { throw null; }
SqlGen_TypedNegativeInfinityNotSupported(object p0, object p1)2566         public static string SqlGen_TypedNegativeInfinityNotSupported(object p0, object p1) { throw null; }
SqlGen_TypedPositiveInfinityNotSupported(object p0, object p1)2567         public static string SqlGen_TypedPositiveInfinityNotSupported(object p0, object p1) { throw null; }
SqlProvider_InvalidGeographyColumn(object p0)2568         public static string SqlProvider_InvalidGeographyColumn(object p0) { throw null; }
SqlProvider_InvalidGeometryColumn(object p0)2569         public static string SqlProvider_InvalidGeometryColumn(object p0) { throw null; }
SqlProvider_NeedSqlDataReader(object p0)2570         public static string SqlProvider_NeedSqlDataReader(object p0) { throw null; }
SqlSpatialServices_ProviderValueNotSqlType(object p0)2571         public static string SqlSpatialServices_ProviderValueNotSqlType(object p0) { throw null; }
StorageEntityContainerNameMismatchWhileSpecifyingPartialMapping(object p0, object p1, object p2)2572         public static string StorageEntityContainerNameMismatchWhileSpecifyingPartialMapping(object p0, object p1, object p2) { throw null; }
StoreItemCollectionMustHaveOneArtifact(object p0)2573         public static string StoreItemCollectionMustHaveOneArtifact(object p0) { throw null; }
SystemNamespaceEncountered(object p0)2574         public static string SystemNamespaceEncountered(object p0) { throw null; }
TableAndSchemaAreMutuallyExclusiveWithDefiningQuery(object p0)2575         public static string TableAndSchemaAreMutuallyExclusiveWithDefiningQuery(object p0) { throw null; }
TargetRoleNameInNavigationPropertyNotValid(object p0, object p1, object p2, object p3)2576         public static string TargetRoleNameInNavigationPropertyNotValid(object p0, object p1, object p2, object p3) { throw null; }
TextNotAllowed(object p0)2577         public static string TextNotAllowed(object p0) { throw null; }
TooManyAssociationEnds(object p0)2578         public static string TooManyAssociationEnds(object p0) { throw null; }
TypeArgumentBelowMin(object p0)2579         public static string TypeArgumentBelowMin(object p0) { throw null; }
TypeArgumentCountMismatch(object p0, object p1)2580         public static string TypeArgumentCountMismatch(object p0, object p1) { throw null; }
TypeArgumentExceedsMax(object p0)2581         public static string TypeArgumentExceedsMax(object p0) { throw null; }
TypeDoesNotSupportFacet(object p0, object p1)2582         public static string TypeDoesNotSupportFacet(object p0, object p1) { throw null; }
TypeDoesNotSupportSpec(object p0)2583         public static string TypeDoesNotSupportSpec(object p0) { throw null; }
TypeKindMismatch(object p0, object p1, object p2, object p3)2584         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)2585         public static string TypeMismatchRelationshipConstaint(object p0, object p1, object p2, object p3, object p4) { throw null; }
TypeMustBeEntityType(object p0, object p1, object p2)2586         public static string TypeMustBeEntityType(object p0, object p1, object p2) { throw null; }
TypeMustBeNominalType(object p0, object p1, object p2)2587         public static string TypeMustBeNominalType(object p0, object p1, object p2) { throw null; }
TypeNameAlreadyDefinedDuplicate(object p0)2588         public static string TypeNameAlreadyDefinedDuplicate(object p0) { throw null; }
TypeNameNotFound(object p0)2589         public static string TypeNameNotFound(object p0) { throw null; }
TypeNotInAssociationSet(object p0, object p1, object p2)2590         public static string TypeNotInAssociationSet(object p0, object p1, object p2) { throw null; }
TypeNotInEntitySet(object p0, object p1, object p2)2591         public static string TypeNotInEntitySet(object p0, object p1, object p2) { throw null; }
UnableToFindReflectedType(object p0, object p1)2592         public static string UnableToFindReflectedType(object p0, object p1) { throw null; }
UnableToResolveAssembly(object p0)2593         public static string UnableToResolveAssembly(object p0) { throw null; }
UnacceptableUri(object p0)2594         public static string UnacceptableUri(object p0) { throw null; }
UnexpectedRootElement(object p0, object p1, object p2)2595         public static string UnexpectedRootElement(object p0, object p1, object p2) { throw null; }
UnexpectedRootElementNoNamespace(object p0, object p1, object p2)2596         public static string UnexpectedRootElementNoNamespace(object p0, object p1, object p2) { throw null; }
UnexpectedTypeInCollection(object p0, object p1)2597         public static string UnexpectedTypeInCollection(object p0, object p1) { throw null; }
UnexpectedXmlAttribute(object p0)2598         public static string UnexpectedXmlAttribute(object p0) { throw null; }
UnexpectedXmlElement(object p0)2599         public static string UnexpectedXmlElement(object p0) { throw null; }
UnexpectedXmlNodeType(object p0)2600         public static string UnexpectedXmlNodeType(object p0) { throw null; }
UnknownExpressionResolutionClass(object p0)2601         public static string UnknownExpressionResolutionClass(object p0) { throw null; }
Update_AmbiguousForeignKey(object p0)2602         public static string Update_AmbiguousForeignKey(object p0) { throw null; }
Update_ConcurrencyError(object p0)2603         public static string Update_ConcurrencyError(object p0) { throw null; }
Update_GeneratedDependent(object p0)2604         public static string Update_GeneratedDependent(object p0) { throw null; }
Update_InsertingOrUpdatingReferenceToDeletedEntity(object p0)2605         public static string Update_InsertingOrUpdatingReferenceToDeletedEntity(object p0) { throw null; }
Update_MappingNotFound(object p0)2606         public static string Update_MappingNotFound(object p0) { throw null; }
Update_MissingEntity(object p0, object p1)2607         public static string Update_MissingEntity(object p0, object p1) { throw null; }
Update_MissingFunctionMapping(object p0, object p1, object p2)2608         public static string Update_MissingFunctionMapping(object p0, object p1, object p2) { throw null; }
Update_MissingRequiredEntity(object p0, object p1, object p2)2609         public static string Update_MissingRequiredEntity(object p0, object p1, object p2) { throw null; }
Update_MissingRequiredRelationshipValue(object p0, object p1)2610         public static string Update_MissingRequiredRelationshipValue(object p0, object p1) { throw null; }
Update_MissingResultColumn(object p0)2611         public static string Update_MissingResultColumn(object p0) { throw null; }
Update_ModifyingIdentityColumn(object p0, object p1, object p2)2612         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)2613         public static string Update_NotSupportedComputedKeyColumn(object p0, object p1, object p2, object p3, object p4) { throw null; }
Update_NotSupportedIdentityType(object p0, object p1)2614         public static string Update_NotSupportedIdentityType(object p0, object p1) { throw null; }
Update_NotSupportedServerGenKey(object p0)2615         public static string Update_NotSupportedServerGenKey(object p0) { throw null; }
Update_NullReturnValueForNonNullableMember(object p0, object p1)2616         public static string Update_NullReturnValueForNonNullableMember(object p0, object p1) { throw null; }
Update_NullValue(object p0)2617         public static string Update_NullValue(object p0) { throw null; }
Update_RelationshipCardinalityConstraintViolation(object p0, object p1, object p2, object p3, object p4, object p5)2618         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)2619         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)2620         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)2621         public static string Update_ReturnValueHasUnexpectedType(object p0, object p1, object p2, object p3) { throw null; }
Update_SqlEntitySetWithoutDmlFunctions(object p0, object p1, object p2)2622         public static string Update_SqlEntitySetWithoutDmlFunctions(object p0, object p1, object p2) { throw null; }
Update_UnableToConvertRowsAffectedParameterToInt32(object p0, object p1)2623         public static string Update_UnableToConvertRowsAffectedParameterToInt32(object p0, object p1) { throw null; }
Update_UnsupportedCastArgument(object p0)2624         public static string Update_UnsupportedCastArgument(object p0) { throw null; }
Update_UnsupportedExpressionKind(object p0, object p1)2625         public static string Update_UnsupportedExpressionKind(object p0, object p1) { throw null; }
Update_UnsupportedExtentType(object p0, object p1)2626         public static string Update_UnsupportedExtentType(object p0, object p1) { throw null; }
Update_UnsupportedJoinType(object p0)2627         public static string Update_UnsupportedJoinType(object p0) { throw null; }
Update_UnsupportedProjection(object p0)2628         public static string Update_UnsupportedProjection(object p0) { throw null; }
Validator_NoKeyMembers(object p0)2629         public static string Validator_NoKeyMembers(object p0) { throw null; }
Validator_NullableEntityKeyProperty(object p0, object p1)2630         public static string Validator_NullableEntityKeyProperty(object p0, object p1) { throw null; }
Validator_OSpace_ComplexPropertyNotComplex(object p0, object p1, object p2)2631         public static string Validator_OSpace_ComplexPropertyNotComplex(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_AmbiguousClrType(object p0, object p1, object p2)2632         public static string Validator_OSpace_Convention_AmbiguousClrType(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_AttributeAssemblyReferenced(object p0)2633         public static string Validator_OSpace_Convention_AttributeAssemblyReferenced(object p0) { throw null; }
Validator_OSpace_Convention_BaseTypeIncompatible(object p0, object p1, object p2)2634         public static string Validator_OSpace_Convention_BaseTypeIncompatible(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_BaseTypeNotLoaded(object p0, object p1)2635         public static string Validator_OSpace_Convention_BaseTypeNotLoaded(object p0, object p1) { throw null; }
Validator_OSpace_Convention_MissingOSpaceType(object p0)2636         public static string Validator_OSpace_Convention_MissingOSpaceType(object p0) { throw null; }
Validator_OSpace_Convention_MissingRequiredProperty(object p0, object p1)2637         public static string Validator_OSpace_Convention_MissingRequiredProperty(object p0, object p1) { throw null; }
Validator_OSpace_Convention_MultipleTypesWithSameName(object p0)2638         public static string Validator_OSpace_Convention_MultipleTypesWithSameName(object p0) { throw null; }
Validator_OSpace_Convention_NonPrimitiveTypeProperty(object p0, object p1, object p2)2639         public static string Validator_OSpace_Convention_NonPrimitiveTypeProperty(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_RelationshipNotLoaded(object p0, object p1)2640         public static string Validator_OSpace_Convention_RelationshipNotLoaded(object p0, object p1) { throw null; }
Validator_OSpace_Convention_ScalarPropertyMissginGetterOrSetter(object p0, object p1, object p2)2641         public static string Validator_OSpace_Convention_ScalarPropertyMissginGetterOrSetter(object p0, object p1, object p2) { throw null; }
Validator_OSpace_Convention_SSpaceOSpaceTypeMismatch(object p0, object p1)2642         public static string Validator_OSpace_Convention_SSpaceOSpaceTypeMismatch(object p0, object p1) { throw null; }
Validator_OSpace_Convention_Struct(object p0, object p1)2643         public static string Validator_OSpace_Convention_Struct(object p0, object p1) { throw null; }
Validator_OSpace_InvalidNavPropReturnType(object p0, object p1, object p2)2644         public static string Validator_OSpace_InvalidNavPropReturnType(object p0, object p1, object p2) { throw null; }
Validator_OSpace_ScalarPropertyNotPrimitive(object p0, object p1, object p2)2645         public static string Validator_OSpace_ScalarPropertyNotPrimitive(object p0, object p1, object p2) { throw null; }
Validator_UnsupportedEnumUnderlyingType(object p0)2646         public static string Validator_UnsupportedEnumUnderlyingType(object p0) { throw null; }
ValueNotUnderstood(object p0, object p1)2647         public static string ValueNotUnderstood(object p0, object p1) { throw null; }
ViewGen_AssociationEndShouldBeMappedToKey(object p0, object p1)2648         public static string ViewGen_AssociationEndShouldBeMappedToKey(object p0, object p1) { throw null; }
ViewGen_AssociationSetKey_Missing(object p0, object p1, object p2)2649         public static string ViewGen_AssociationSetKey_Missing(object p0, object p1, object p2) { throw null; }
ViewGen_AssociationSet_AsUserString(object p0, object p1, object p2)2650         public static string ViewGen_AssociationSet_AsUserString(object p0, object p1, object p2) { throw null; }
ViewGen_AssociationSet_AsUserString_Negated(object p0, object p1, object p2)2651         public static string ViewGen_AssociationSet_AsUserString_Negated(object p0, object p1, object p2) { throw null; }
Viewgen_CannotGenerateQueryViewUnderNoValidation(object p0)2652         public static string Viewgen_CannotGenerateQueryViewUnderNoValidation(object p0) { throw null; }
ViewGen_Cannot_Disambiguate_MultiConstant(object p0, object p1)2653         public static string ViewGen_Cannot_Disambiguate_MultiConstant(object p0, object p1) { throw null; }
ViewGen_Cannot_Recover_Attributes(object p0, object p1, object p2)2654         public static string ViewGen_Cannot_Recover_Attributes(object p0, object p1, object p2) { throw null; }
ViewGen_Cannot_Recover_Types(object p0, object p1)2655         public static string ViewGen_Cannot_Recover_Types(object p0, object p1) { throw null; }
ViewGen_Concurrency_Derived_Class(object p0, object p1, object p2)2656         public static string ViewGen_Concurrency_Derived_Class(object p0, object p1, object p2) { throw null; }
ViewGen_Concurrency_Invalid_Condition(object p0, object p1)2657         public static string ViewGen_Concurrency_Invalid_Condition(object p0, object p1) { throw null; }
Viewgen_ConfigurationErrorMsg(object p0)2658         public static string Viewgen_ConfigurationErrorMsg(object p0) { throw null; }
ViewGen_CQ_DomainConstraint(object p0)2659         public static string ViewGen_CQ_DomainConstraint(object p0) { throw null; }
ViewGen_CQ_PartitionConstraint(object p0)2660         public static string ViewGen_CQ_PartitionConstraint(object p0) { throw null; }
ViewGen_Duplicate_CProperties(object p0)2661         public static string ViewGen_Duplicate_CProperties(object p0) { throw null; }
ViewGen_Duplicate_CProperties_IsMapped(object p0, object p1)2662         public static string ViewGen_Duplicate_CProperties_IsMapped(object p0, object p1) { throw null; }
ViewGen_EntitySetKey_Missing(object p0, object p1)2663         public static string ViewGen_EntitySetKey_Missing(object p0, object p1) { throw null; }
ViewGen_EntitySet_AsUserString(object p0, object p1)2664         public static string ViewGen_EntitySet_AsUserString(object p0, object p1) { throw null; }
ViewGen_EntitySet_AsUserString_Negated(object p0, object p1)2665         public static string ViewGen_EntitySet_AsUserString_Negated(object p0, object p1) { throw null; }
ViewGen_ErrorLog(object p0)2666         public static string ViewGen_ErrorLog(object p0) { throw null; }
ViewGen_ErrorLog2(object p0)2667         public static string ViewGen_ErrorLog2(object p0) { throw null; }
Viewgen_ErrorPattern_ConditionMemberIsMapped(object p0)2668         public static string Viewgen_ErrorPattern_ConditionMemberIsMapped(object p0) { throw null; }
Viewgen_ErrorPattern_DuplicateConditionValue(object p0)2669         public static string Viewgen_ErrorPattern_DuplicateConditionValue(object p0) { throw null; }
Viewgen_ErrorPattern_NotNullConditionMappedToNullableMember(object p0, object p1)2670         public static string Viewgen_ErrorPattern_NotNullConditionMappedToNullableMember(object p0, object p1) { throw null; }
Viewgen_ErrorPattern_Partition_MultipleTypesMappedToSameTable_WithoutCondition(object p0, object p1)2671         public static string Viewgen_ErrorPattern_Partition_MultipleTypesMappedToSameTable_WithoutCondition(object p0, object p1) { throw null; }
Viewgen_ErrorPattern_TableMappedToMultipleES(object p0, object p1, object p2)2672         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)2673         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)2674         public static string ViewGen_Foreign_Key_LowerBound_MustBeOne(object p0, object p1, object p2) { throw null; }
ViewGen_Foreign_Key_Missing_Relationship_Mapping(object p0)2675         public static string ViewGen_Foreign_Key_Missing_Relationship_Mapping(object p0) { throw null; }
ViewGen_Foreign_Key_Missing_Table_Mapping(object p0, object p1)2676         public static string ViewGen_Foreign_Key_Missing_Table_Mapping(object p0, object p1) { throw null; }
ViewGen_Foreign_Key_Not_Guaranteed_InCSpace(object p0)2677         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)2678         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)2679         public static string ViewGen_Foreign_Key_UpperBound_MustBeOne(object p0, object p1, object p2) { throw null; }
ViewGen_HashOnMappingClosure_Not_Matching(object p0)2680         public static string ViewGen_HashOnMappingClosure_Not_Matching(object p0) { throw null; }
ViewGen_InvalidCondition(object p0)2681         public static string ViewGen_InvalidCondition(object p0) { throw null; }
ViewGen_KeyConstraint_Update_Violation_AssociationSet(object p0, object p1, object p2)2682         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)2683         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)2684         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)2685         public static string ViewGen_Missing_Sets_Mapping(object p0) { throw null; }
ViewGen_Missing_Set_Mapping(object p0)2686         public static string ViewGen_Missing_Set_Mapping(object p0) { throw null; }
ViewGen_Missing_Type_Mapping(object p0)2687         public static string ViewGen_Missing_Type_Mapping(object p0) { throw null; }
Viewgen_MultipleFragmentsBetweenCandSExtentWithDistinct(object p0, object p1)2688         public static string Viewgen_MultipleFragmentsBetweenCandSExtentWithDistinct(object p0, object p1) { throw null; }
ViewGen_NegatedCellConstant(object p0)2689         public static string ViewGen_NegatedCellConstant(object p0) { throw null; }
ViewGen_NonKeyProjectedWithOverlappingPartitions(object p0)2690         public static string ViewGen_NonKeyProjectedWithOverlappingPartitions(object p0) { throw null; }
ViewGen_NotNull_No_Projected_Slot(object p0)2691         public static string ViewGen_NotNull_No_Projected_Slot(object p0) { throw null; }
ViewGen_No_Default_Value(object p0, object p1)2692         public static string ViewGen_No_Default_Value(object p0, object p1) { throw null; }
ViewGen_No_Default_Value_For_Configuration(object p0)2693         public static string ViewGen_No_Default_Value_For_Configuration(object p0) { throw null; }
Viewgen_NullableMappingForNonNullableColumn(object p0, object p1)2694         public static string Viewgen_NullableMappingForNonNullableColumn(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsEqualTo(object p0, object p1)2695         public static string ViewGen_OneOfConst_IsEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsNonNullable(object p0)2696         public static string ViewGen_OneOfConst_IsNonNullable(object p0) { throw null; }
ViewGen_OneOfConst_IsNotEqualTo(object p0, object p1)2697         public static string ViewGen_OneOfConst_IsNotEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsNotOneOf(object p0, object p1)2698         public static string ViewGen_OneOfConst_IsNotOneOf(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsOneOf(object p0, object p1)2699         public static string ViewGen_OneOfConst_IsOneOf(object p0, object p1) { throw null; }
ViewGen_OneOfConst_IsOneOfTypes(object p0)2700         public static string ViewGen_OneOfConst_IsOneOfTypes(object p0) { throw null; }
ViewGen_OneOfConst_MustBeEqualTo(object p0, object p1)2701         public static string ViewGen_OneOfConst_MustBeEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_MustBeNonNullable(object p0)2702         public static string ViewGen_OneOfConst_MustBeNonNullable(object p0) { throw null; }
ViewGen_OneOfConst_MustBeNull(object p0)2703         public static string ViewGen_OneOfConst_MustBeNull(object p0) { throw null; }
ViewGen_OneOfConst_MustBeOneOf(object p0, object p1)2704         public static string ViewGen_OneOfConst_MustBeOneOf(object p0, object p1) { throw null; }
ViewGen_OneOfConst_MustNotBeEqualTo(object p0, object p1)2705         public static string ViewGen_OneOfConst_MustNotBeEqualTo(object p0, object p1) { throw null; }
ViewGen_OneOfConst_MustNotBeOneOf(object p0, object p1)2706         public static string ViewGen_OneOfConst_MustNotBeOneOf(object p0, object p1) { throw null; }
Viewgen_QV_RewritingNotFound(object p0)2707         public static string Viewgen_QV_RewritingNotFound(object p0) { throw null; }
Viewgen_RightSideNotDisjoint(object p0)2708         public static string Viewgen_RightSideNotDisjoint(object p0) { throw null; }
ViewGen_TableKey_Missing(object p0, object p1)2709         public static string ViewGen_TableKey_Missing(object p0, object p1) { throw null; }
2710     }
2711 }
2712 namespace System.Data.EntityClient
2713 {
2714     public sealed partial class EntityCommand : System.Data.Common.DbCommand
2715     {
EntityCommand()2716         public EntityCommand() { }
EntityCommand(string statement)2717         public EntityCommand(string statement) { }
EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection)2718         public EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection) { }
EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection, System.Data.EntityClient.EntityTransaction transaction)2719         public EntityCommand(string statement, System.Data.EntityClient.EntityConnection connection, System.Data.EntityClient.EntityTransaction transaction) { }
2720         public override string CommandText { get { throw null; } set { } }
2721         public override int CommandTimeout { get { throw null; } set { } }
2722         public System.Data.Common.CommandTrees.DbCommandTree CommandTree { get { throw null; } set { } }
2723         public override System.Data.CommandType CommandType { get { throw null; } set { } }
2724         public new System.Data.EntityClient.EntityConnection Connection { get { throw null; } set { } }
2725         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } set { } }
2726         protected override System.Data.Common.DbParameterCollection DbParameterCollection { get { throw null; } }
2727         protected override System.Data.Common.DbTransaction DbTransaction { get { throw null; } set { } }
2728         public override bool DesignTimeVisible { get { throw null; } set { } }
2729         public bool EnablePlanCaching { get { throw null; } set { } }
2730         public new System.Data.EntityClient.EntityParameterCollection Parameters { get { throw null; } }
2731         public new System.Data.EntityClient.EntityTransaction Transaction { get { throw null; } set { } }
2732         public override System.Data.UpdateRowSource UpdatedRowSource { get { throw null; } set { } }
Cancel()2733         public override void Cancel() { }
CreateDbParameter()2734         protected override System.Data.Common.DbParameter CreateDbParameter() { throw null; }
CreateParameter()2735         public new System.Data.EntityClient.EntityParameter CreateParameter() { throw null; }
ExecuteDbDataReader(System.Data.CommandBehavior behavior)2736         protected override System.Data.Common.DbDataReader ExecuteDbDataReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteNonQuery()2737         public override int ExecuteNonQuery() { throw null; }
ExecuteReader()2738         public new System.Data.EntityClient.EntityDataReader ExecuteReader() { throw null; }
ExecuteReader(System.Data.CommandBehavior behavior)2739         public new System.Data.EntityClient.EntityDataReader ExecuteReader(System.Data.CommandBehavior behavior) { throw null; }
ExecuteScalar()2740         public override object ExecuteScalar() { throw null; }
Prepare()2741         public override void Prepare() { }
2742         [System.ComponentModel.BrowsableAttribute(false)]
ToTraceString()2743         public string ToTraceString() { throw null; }
2744     }
2745     public sealed partial class EntityConnection : System.Data.Common.DbConnection
2746     {
EntityConnection()2747         public EntityConnection() { }
EntityConnection(System.Data.Metadata.Edm.MetadataWorkspace workspace, System.Data.Common.DbConnection connection)2748         public EntityConnection(System.Data.Metadata.Edm.MetadataWorkspace workspace, System.Data.Common.DbConnection connection) { }
EntityConnection(string connectionString)2749         public EntityConnection(string connectionString) { }
2750         public override string ConnectionString { get { throw null; } set { } }
2751         public override int ConnectionTimeout { get { throw null; } }
2752         public override string Database { get { throw null; } }
2753         public override string DataSource { get { throw null; } }
2754         protected override System.Data.Common.DbProviderFactory DbProviderFactory { get { throw null; } }
2755         public override string ServerVersion { get { throw null; } }
2756         public override System.Data.ConnectionState State { get { throw null; } }
2757         public System.Data.Common.DbConnection StoreConnection { get { throw null; } }
BeginDbTransaction(System.Data.IsolationLevel isolationLevel)2758         protected override System.Data.Common.DbTransaction BeginDbTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
BeginTransaction()2759         public new System.Data.EntityClient.EntityTransaction BeginTransaction() { throw null; }
BeginTransaction(System.Data.IsolationLevel isolationLevel)2760         public new System.Data.EntityClient.EntityTransaction BeginTransaction(System.Data.IsolationLevel isolationLevel) { throw null; }
ChangeDatabase(string databaseName)2761         public override void ChangeDatabase(string databaseName) { }
Close()2762         public override void Close() { }
CreateCommand()2763         public new System.Data.EntityClient.EntityCommand CreateCommand() { throw null; }
CreateDbCommand()2764         protected override System.Data.Common.DbCommand CreateDbCommand() { throw null; }
Dispose(bool disposing)2765         protected override void Dispose(bool disposing) { }
EnlistTransaction(System.Transactions.Transaction transaction)2766         public override void EnlistTransaction(System.Transactions.Transaction transaction) { }
2767         [System.CLSCompliantAttribute(false)]
GetMetadataWorkspace()2768         public System.Data.Metadata.Edm.MetadataWorkspace GetMetadataWorkspace() { throw null; }
Open()2769         public override void Open() { }
2770     }
2771     public sealed partial class EntityConnectionStringBuilder : System.Data.Common.DbConnectionStringBuilder
2772     {
EntityConnectionStringBuilder()2773         public EntityConnectionStringBuilder() { }
EntityConnectionStringBuilder(string connectionString)2774         public EntityConnectionStringBuilder(string connectionString) { }
2775         public override bool IsFixedSize { get { throw null; } }
2776         public override object this[string keyword] { get { throw null; } set { } }
2777         public override System.Collections.ICollection Keys { get { throw null; } }
2778         [System.ComponentModel.DisplayNameAttribute("Metadata")]
2779         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2780         public string Metadata { get { throw null; } set { } }
2781         [System.ComponentModel.DisplayNameAttribute("Name")]
2782         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2783         public string Name { get { throw null; } set { } }
2784         [System.ComponentModel.DisplayNameAttribute("Provider")]
2785         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2786         public string Provider { get { throw null; } set { } }
2787         [System.ComponentModel.DisplayNameAttribute("Provider Connection String")]
2788         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2789         public string ProviderConnectionString { get { throw null; } set { } }
Clear()2790         public override void Clear() { }
ContainsKey(string keyword)2791         public override bool ContainsKey(string keyword) { throw null; }
Remove(string keyword)2792         public override bool Remove(string keyword) { throw null; }
TryGetValue(string keyword, out object value)2793         public override bool TryGetValue(string keyword, out object value) { value = default(object); throw null; }
2794     }
2795     public partial class EntityDataReader : System.Data.Common.DbDataReader, System.Data.IDataRecord, System.Data.IExtendedDataRecord
2796     {
EntityDataReader()2797         internal EntityDataReader() { }
2798         public System.Data.Common.DataRecordInfo DataRecordInfo { get { throw null; } }
2799         public override int Depth { get { throw null; } }
2800         public override int FieldCount { get { throw null; } }
2801         public override bool HasRows { get { throw null; } }
2802         public override bool IsClosed { get { throw null; } }
2803         public override object this[int ordinal] { get { throw null; } }
2804         public override object this[string name] { get { throw null; } }
2805         public override int RecordsAffected { get { throw null; } }
2806         public override int VisibleFieldCount { get { throw null; } }
Close()2807         public override void Close() { }
Dispose(bool disposing)2808         protected override void Dispose(bool disposing) { }
GetBoolean(int ordinal)2809         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)2810         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length)2811         public override long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length) { throw null; }
GetChar(int ordinal)2812         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length)2813         public override long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length) { throw null; }
GetDataReader(int i)2814         public System.Data.Common.DbDataReader GetDataReader(int i) { throw null; }
GetDataRecord(int i)2815         public System.Data.Common.DbDataRecord GetDataRecord(int i) { throw null; }
GetDataTypeName(int ordinal)2816         public override string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)2817         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDbDataReader(int ordinal)2818         protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)2819         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)2820         public override double GetDouble(int ordinal) { throw null; }
GetEnumerator()2821         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetFieldType(int ordinal)2822         public override System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)2823         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)2824         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)2825         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)2826         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)2827         public override long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)2828         public override string GetName(int ordinal) { throw null; }
GetOrdinal(string name)2829         public override int GetOrdinal(string name) { throw null; }
2830         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificFieldType(int ordinal)2831         public override System.Type GetProviderSpecificFieldType(int ordinal) { throw null; }
2832         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValue(int ordinal)2833         public override object GetProviderSpecificValue(int ordinal) { throw null; }
2834         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetProviderSpecificValues(object[] values)2835         public override int GetProviderSpecificValues(object[] values) { throw null; }
GetSchemaTable()2836         public override System.Data.DataTable GetSchemaTable() { throw null; }
GetString(int ordinal)2837         public override string GetString(int ordinal) { throw null; }
GetValue(int ordinal)2838         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)2839         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)2840         public override bool IsDBNull(int ordinal) { throw null; }
NextResult()2841         public override bool NextResult() { throw null; }
Read()2842         public override bool Read() { throw null; }
2843     }
2844     public sealed partial class EntityParameter : System.Data.Common.DbParameter, System.Data.IDataParameter, System.Data.IDbDataParameter
2845     {
EntityParameter()2846         public EntityParameter() { }
EntityParameter(string parameterName, System.Data.DbType dbType)2847         public EntityParameter(string parameterName, System.Data.DbType dbType) { }
EntityParameter(string parameterName, System.Data.DbType dbType, int size)2848         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)2849         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)2850         public EntityParameter(string parameterName, System.Data.DbType dbType, int size, string sourceColumn) { }
2851         public override System.Data.DbType DbType { get { throw null; } set { } }
2852         [System.ComponentModel.RefreshPropertiesAttribute((System.ComponentModel.RefreshProperties)(1))]
2853         public override System.Data.ParameterDirection Direction { get { throw null; } set { } }
2854         public System.Data.Metadata.Edm.EdmType EdmType { get { throw null; } set { } }
2855         public override bool IsNullable { get { throw null; } set { } }
2856         public override string ParameterName { get { throw null; } set { } }
2857         public new byte Precision { get { throw null; } set { } }
2858         public new byte Scale { get { throw null; } set { } }
2859         public override int Size { get { throw null; } set { } }
2860         public override string SourceColumn { get { throw null; } set { } }
2861         public override bool SourceColumnNullMapping { get { throw null; } set { } }
2862         public override System.Data.DataRowVersion SourceVersion { get { throw null; } set { } }
2863         public override object Value { get { throw null; } set { } }
ResetDbType()2864         public override void ResetDbType() { }
ToString()2865         public override string ToString() { throw null; }
2866     }
2867     public sealed partial class EntityParameterCollection : System.Data.Common.DbParameterCollection
2868     {
EntityParameterCollection()2869         internal EntityParameterCollection() { }
2870         public override int Count { get { throw null; } }
2871         public override bool IsFixedSize { get { throw null; } }
2872         public override bool IsReadOnly { get { throw null; } }
2873         public override bool IsSynchronized { get { throw null; } }
2874         public new System.Data.EntityClient.EntityParameter this[int index] { get { throw null; } set { } }
2875         public new System.Data.EntityClient.EntityParameter this[string parameterName] { get { throw null; } set { } }
2876         public override object SyncRoot { get { throw null; } }
Add(System.Data.EntityClient.EntityParameter value)2877         public System.Data.EntityClient.EntityParameter Add(System.Data.EntityClient.EntityParameter value) { throw null; }
2878         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Add(object value)2879         public override int Add(object value) { throw null; }
Add(string parameterName, System.Data.DbType dbType)2880         public System.Data.EntityClient.EntityParameter Add(string parameterName, System.Data.DbType dbType) { throw null; }
Add(string parameterName, System.Data.DbType dbType, int size)2881         public System.Data.EntityClient.EntityParameter Add(string parameterName, System.Data.DbType dbType, int size) { throw null; }
AddRange(System.Array values)2882         public override void AddRange(System.Array values) { }
AddRange(System.Data.EntityClient.EntityParameter[] values)2883         public void AddRange(System.Data.EntityClient.EntityParameter[] values) { }
AddWithValue(string parameterName, object value)2884         public System.Data.EntityClient.EntityParameter AddWithValue(string parameterName, object value) { throw null; }
Clear()2885         public override void Clear() { }
Contains(object value)2886         public override bool Contains(object value) { throw null; }
Contains(string parameterName)2887         public override bool Contains(string parameterName) { throw null; }
CopyTo(System.Array array, int index)2888         public override void CopyTo(System.Array array, int index) { }
CopyTo(System.Data.EntityClient.EntityParameter[] array, int index)2889         public void CopyTo(System.Data.EntityClient.EntityParameter[] array, int index) { }
GetEnumerator()2890         public override System.Collections.IEnumerator GetEnumerator() { throw null; }
GetParameter(int index)2891         protected override System.Data.Common.DbParameter GetParameter(int index) { throw null; }
GetParameter(string parameterName)2892         protected override System.Data.Common.DbParameter GetParameter(string parameterName) { throw null; }
IndexOf(System.Data.EntityClient.EntityParameter value)2893         public int IndexOf(System.Data.EntityClient.EntityParameter value) { throw null; }
IndexOf(object value)2894         public override int IndexOf(object value) { throw null; }
IndexOf(string parameterName)2895         public override int IndexOf(string parameterName) { throw null; }
Insert(int index, System.Data.EntityClient.EntityParameter value)2896         public void Insert(int index, System.Data.EntityClient.EntityParameter value) { }
Insert(int index, object value)2897         public override void Insert(int index, object value) { }
Remove(System.Data.EntityClient.EntityParameter value)2898         public void Remove(System.Data.EntityClient.EntityParameter value) { }
Remove(object value)2899         public override void Remove(object value) { }
RemoveAt(int index)2900         public override void RemoveAt(int index) { }
RemoveAt(string parameterName)2901         public override void RemoveAt(string parameterName) { }
SetParameter(int index, System.Data.Common.DbParameter value)2902         protected override void SetParameter(int index, System.Data.Common.DbParameter value) { }
SetParameter(string parameterName, System.Data.Common.DbParameter value)2903         protected override void SetParameter(string parameterName, System.Data.Common.DbParameter value) { }
2904     }
2905     public sealed partial class EntityProviderFactory : System.Data.Common.DbProviderFactory, System.IServiceProvider
2906     {
EntityProviderFactory()2907         internal EntityProviderFactory() { }
2908         public static readonly System.Data.EntityClient.EntityProviderFactory Instance;
CreateCommand()2909         public override System.Data.Common.DbCommand CreateCommand() { throw null; }
CreateCommandBuilder()2910         public override System.Data.Common.DbCommandBuilder CreateCommandBuilder() { throw null; }
CreateConnection()2911         public override System.Data.Common.DbConnection CreateConnection() { throw null; }
CreateConnectionStringBuilder()2912         public override System.Data.Common.DbConnectionStringBuilder CreateConnectionStringBuilder() { throw null; }
CreateDataAdapter()2913         public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw null; }
CreateParameter()2914         public override System.Data.Common.DbParameter CreateParameter() { throw null; }
CreatePermission(System.Security.Permissions.PermissionState state)2915         public override System.Security.CodeAccessPermission CreatePermission(System.Security.Permissions.PermissionState state) { throw null; }
System.IServiceProvider.GetService(System.Type serviceType)2916         object System.IServiceProvider.GetService(System.Type serviceType) { throw null; }
2917     }
2918     public sealed partial class EntityTransaction : System.Data.Common.DbTransaction
2919     {
EntityTransaction()2920         internal EntityTransaction() { }
2921         public new System.Data.EntityClient.EntityConnection Connection { get { throw null; } }
2922         protected override System.Data.Common.DbConnection DbConnection { get { throw null; } }
2923         public override System.Data.IsolationLevel IsolationLevel { get { throw null; } }
Commit()2924         public override void Commit() { }
Dispose(bool disposing)2925         protected override void Dispose(bool disposing) { }
Rollback()2926         public override void Rollback() { }
2927     }
2928 }
2929 namespace System.Data.Mapping
2930 {
2931     public abstract partial class EntityViewContainer
2932     {
EntityViewContainer()2933         protected EntityViewContainer() { }
2934         public string EdmEntityContainerName { get { throw null; } set { } }
2935         public string HashOverAllExtentViews { get { throw null; } set { } }
2936         public string HashOverMappingClosure { get { throw null; } set { } }
2937         public string StoreEntityContainerName { get { throw null; } set { } }
2938         public int ViewCount { get { throw null; } protected set { } }
GetViewAt(int index)2939         protected abstract System.Collections.Generic.KeyValuePair<string, string> GetViewAt(int index);
2940     }
2941     [System.AttributeUsageAttribute((System.AttributeTargets)(1), AllowMultiple=true)]
2942     public sealed partial class EntityViewGenerationAttribute : System.Attribute
2943     {
EntityViewGenerationAttribute(System.Type viewGenerationType)2944         public EntityViewGenerationAttribute(System.Type viewGenerationType) { }
2945         public System.Type ViewGenerationType { get { throw null; } }
2946     }
2947     [System.CLSCompliantAttribute(false)]
2948     public abstract partial class MappingItemCollection : System.Data.Metadata.Edm.ItemCollection
2949     {
MappingItemCollection()2950         internal MappingItemCollection() { }
2951     }
2952     [System.CLSCompliantAttribute(false)]
2953     public partial class StorageMappingItemCollection : System.Data.Mapping.MappingItemCollection
2954     {
StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders)2955         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)2956         public StorageMappingItemCollection(System.Data.Metadata.Edm.EdmItemCollection edmCollection, System.Data.Metadata.Edm.StoreItemCollection storeCollection, params string[] filePaths) { }
2957         public double MappingVersion { get { throw null; } }
2958     }
2959 }
2960 namespace System.Data.Metadata.Edm
2961 {
2962     public sealed partial class AssociationEndMember : System.Data.Metadata.Edm.RelationshipEndMember
2963     {
AssociationEndMember()2964         internal AssociationEndMember() { }
2965         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2966     }
2967     public sealed partial class AssociationSet : System.Data.Metadata.Edm.RelationshipSet
2968     {
AssociationSet()2969         internal AssociationSet() { }
2970         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.AssociationSetEnd> AssociationSetEnds { get { throw null; } }
2971         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2972         public new System.Data.Metadata.Edm.AssociationType ElementType { get { throw null; } }
2973     }
2974     public sealed partial class AssociationSetEnd : System.Data.Metadata.Edm.MetadataItem
2975     {
AssociationSetEnd()2976         internal AssociationSetEnd() { }
2977         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2978         public System.Data.Metadata.Edm.AssociationEndMember CorrespondingAssociationEndMember { get { throw null; } }
2979         public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
2980         public string Name { get { throw null; } }
2981         public System.Data.Metadata.Edm.AssociationSet ParentAssociationSet { get { throw null; } }
2982         [System.ObsoleteAttribute("This property is going away, please use the Name property instead")]
2983         public string Role { get { throw null; } }
ToString()2984         public override string ToString() { throw null; }
2985     }
2986     public sealed partial class AssociationType : System.Data.Metadata.Edm.RelationshipType
2987     {
AssociationType()2988         internal AssociationType() { }
2989         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.AssociationEndMember> AssociationEndMembers { get { throw null; } }
2990         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
2991         public bool IsForeignKey { get { throw null; } }
2992         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.ReferentialConstraint> ReferentialConstraints { get { throw null; } }
2993     }
2994     public enum BuiltInTypeKind
2995     {
2996         AssociationEndMember = 0,
2997         AssociationSet = 2,
2998         AssociationSetEnd = 1,
2999         AssociationType = 3,
3000         CollectionKind = 7,
3001         CollectionType = 6,
3002         ComplexType = 8,
3003         Documentation = 9,
3004         EdmFunction = 18,
3005         EdmMember = 24,
3006         EdmProperty = 28,
3007         EdmType = 11,
3008         EntityContainer = 12,
3009         EntitySet = 13,
3010         EntitySetBase = 4,
3011         EntityType = 14,
3012         EntityTypeBase = 5,
3013         EnumMember = 16,
3014         EnumType = 15,
3015         Facet = 17,
3016         FunctionParameter = 19,
3017         GlobalItem = 20,
3018         MetadataItem = 23,
3019         MetadataProperty = 21,
3020         NavigationProperty = 22,
3021         OperationAction = 10,
3022         ParameterMode = 25,
3023         PrimitiveType = 26,
3024         PrimitiveTypeKind = 27,
3025         ProviderManifest = 29,
3026         ReferentialConstraint = 30,
3027         RefType = 31,
3028         RelationshipEndMember = 32,
3029         RelationshipMultiplicity = 33,
3030         RelationshipSet = 34,
3031         RelationshipType = 35,
3032         RowType = 36,
3033         SimpleType = 37,
3034         StructuralType = 38,
3035         TypeUsage = 39,
3036     }
3037     public enum CollectionKind
3038     {
3039         Bag = 1,
3040         List = 2,
3041         None = 0,
3042     }
3043     public sealed partial class CollectionType : System.Data.Metadata.Edm.EdmType
3044     {
CollectionType()3045         internal CollectionType() { }
3046         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3047         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
3048     }
3049     public partial class ComplexType : System.Data.Metadata.Edm.StructuralType
3050     {
ComplexType()3051         internal ComplexType() { }
3052         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3053         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
3054     }
3055     public enum ConcurrencyMode
3056     {
3057         Fixed = 1,
3058         None = 0,
3059     }
3060     public enum DataSpace
3061     {
3062         CSpace = 1,
3063         CSSpace = 4,
3064         OCSpace = 3,
3065         OSpace = 0,
3066         SSpace = 2,
3067     }
3068     public sealed partial class Documentation : System.Data.Metadata.Edm.MetadataItem
3069     {
Documentation()3070         internal Documentation() { }
3071         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3072         public bool IsEmpty { get { throw null; } }
3073         public string LongDescription { get { throw null; } }
3074         public string Summary { get { throw null; } }
ToString()3075         public override string ToString() { throw null; }
3076     }
3077     [System.SerializableAttribute]
3078     public abstract partial class EdmError
3079     {
EdmError()3080         internal EdmError() { }
3081         public string Message { get { throw null; } }
3082     }
3083     public sealed partial class EdmFunction : System.Data.Metadata.Edm.EdmType
3084     {
EdmFunction()3085         internal EdmFunction() { }
3086         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3087         public string CommandTextAttribute { get { throw null; } }
3088         public override string FullName { get { throw null; } }
3089         public bool IsComposableAttribute { get { throw null; } }
3090         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.FunctionParameter> Parameters { get { throw null; } }
3091         public System.Data.Metadata.Edm.FunctionParameter ReturnParameter { get { throw null; } }
3092         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.FunctionParameter> ReturnParameters { get { throw null; } }
3093     }
3094     [System.CLSCompliantAttribute(false)]
3095     public sealed partial class EdmItemCollection : System.Data.Metadata.Edm.ItemCollection
3096     {
EdmItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders)3097         public EdmItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
EdmItemCollection(params string[] filePaths)3098         public EdmItemCollection(params string[] filePaths) { }
3099         public double EdmVersion { get { throw null; } }
GetPrimitiveTypes()3100         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
GetPrimitiveTypes(double edmVersion)3101         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes(double edmVersion) { throw null; }
3102     }
3103     public abstract partial class EdmMember : System.Data.Metadata.Edm.MetadataItem
3104     {
EdmMember()3105         internal EdmMember() { }
3106         public System.Data.Metadata.Edm.StructuralType DeclaringType { get { throw null; } }
3107         public string Name { get { throw null; } }
3108         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
ToString()3109         public override string ToString() { throw null; }
3110     }
3111     public sealed partial class EdmProperty : System.Data.Metadata.Edm.EdmMember
3112     {
EdmProperty()3113         internal EdmProperty() { }
3114         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3115         public object DefaultValue { get { throw null; } }
3116         public bool Nullable { get { throw null; } }
3117     }
3118     [System.SerializableAttribute]
3119     public sealed partial class EdmSchemaError : System.Data.Metadata.Edm.EdmError
3120     {
EdmSchemaError()3121         internal EdmSchemaError() { }
3122         public int Column { get { throw null; } }
3123         public int ErrorCode { get { throw null; } }
3124         public int Line { get { throw null; } }
3125         public string SchemaLocation { get { throw null; } }
3126         public string SchemaName { get { throw null; } }
3127         public System.Data.Metadata.Edm.EdmSchemaErrorSeverity Severity { get { throw null; } set { } }
3128         public string StackTrace { get { throw null; } }
ToString()3129         public override string ToString() { throw null; }
3130     }
3131     public enum EdmSchemaErrorSeverity
3132     {
3133         Error = 1,
3134         Warning = 0,
3135     }
3136     public abstract partial class EdmType : System.Data.Metadata.Edm.GlobalItem
3137     {
EdmType()3138         internal EdmType() { }
3139         public bool Abstract { get { throw null; } }
3140         public System.Data.Metadata.Edm.EdmType BaseType { get { throw null; } }
3141         public virtual string FullName { get { throw null; } }
3142         public string Name { get { throw null; } }
3143         public string NamespaceName { get { throw null; } }
GetCollectionType()3144         public System.Data.Metadata.Edm.CollectionType GetCollectionType() { throw null; }
ToString()3145         public override string ToString() { throw null; }
3146     }
3147     public sealed partial class EntityContainer : System.Data.Metadata.Edm.GlobalItem
3148     {
EntityContainer()3149         internal EntityContainer() { }
3150         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EntitySetBase> BaseEntitySets { get { throw null; } }
3151         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3152         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmFunction> FunctionImports { get { throw null; } }
3153         public string Name { get { throw null; } }
GetEntitySetByName(string name, bool ignoreCase)3154         public System.Data.Metadata.Edm.EntitySet GetEntitySetByName(string name, bool ignoreCase) { throw null; }
GetRelationshipSetByName(string name, bool ignoreCase)3155         public System.Data.Metadata.Edm.RelationshipSet GetRelationshipSetByName(string name, bool ignoreCase) { throw null; }
ToString()3156         public override string ToString() { throw null; }
TryGetEntitySetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.EntitySet entitySet)3157         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)3158         public bool TryGetRelationshipSetByName(string name, bool ignoreCase, out System.Data.Metadata.Edm.RelationshipSet relationshipSet) { relationshipSet = default(System.Data.Metadata.Edm.RelationshipSet); throw null; }
3159     }
3160     public partial class EntitySet : System.Data.Metadata.Edm.EntitySetBase
3161     {
EntitySet()3162         internal EntitySet() { }
3163         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3164         public new System.Data.Metadata.Edm.EntityType ElementType { get { throw null; } }
3165     }
3166     public abstract partial class EntitySetBase : System.Data.Metadata.Edm.MetadataItem
3167     {
EntitySetBase()3168         internal EntitySetBase() { }
3169         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3170         public System.Data.Metadata.Edm.EntityTypeBase ElementType { get { throw null; } }
3171         public System.Data.Metadata.Edm.EntityContainer EntityContainer { get { throw null; } }
3172         public string Name { get { throw null; } }
ToString()3173         public override string ToString() { throw null; }
3174     }
3175     public partial class EntityType : System.Data.Metadata.Edm.EntityTypeBase
3176     {
EntityType()3177         internal EntityType() { }
3178         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3179         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.NavigationProperty> NavigationProperties { get { throw null; } }
3180         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
GetReferenceType()3181         public System.Data.Metadata.Edm.RefType GetReferenceType() { throw null; }
3182     }
3183     public abstract partial class EntityTypeBase : System.Data.Metadata.Edm.StructuralType
3184     {
EntityTypeBase()3185         internal EntityTypeBase() { }
3186         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmMember> KeyMembers { get { throw null; } }
3187     }
3188     public sealed partial class EnumMember : System.Data.Metadata.Edm.MetadataItem
3189     {
EnumMember()3190         internal EnumMember() { }
3191         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3192         public string Name { get { throw null; } }
3193         public object Value { get { throw null; } }
ToString()3194         public override string ToString() { throw null; }
3195     }
3196     public partial class EnumType : System.Data.Metadata.Edm.SimpleType
3197     {
EnumType()3198         internal EnumType() { }
3199         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3200         public bool IsFlags { get { throw null; } }
3201         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EnumMember> Members { get { throw null; } }
3202         public System.Data.Metadata.Edm.PrimitiveType UnderlyingType { get { throw null; } }
3203     }
3204     [System.Diagnostics.DebuggerDisplayAttribute("{Name,nq}={Value}")]
3205     public sealed partial class Facet : System.Data.Metadata.Edm.MetadataItem
3206     {
Facet()3207         internal Facet() { }
3208         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3209         public System.Data.Metadata.Edm.FacetDescription Description { get { throw null; } }
3210         public System.Data.Metadata.Edm.EdmType FacetType { get { throw null; } }
3211         public bool IsUnbounded { get { throw null; } }
3212         public string Name { get { throw null; } }
3213         public object Value { get { throw null; } }
ToString()3214         public override string ToString() { throw null; }
3215     }
3216     public sealed partial class FacetDescription
3217     {
FacetDescription()3218         internal FacetDescription() { }
3219         public object DefaultValue { get { throw null; } }
3220         public string FacetName { get { throw null; } }
3221         public System.Data.Metadata.Edm.EdmType FacetType { get { throw null; } }
3222         public bool IsConstant { get { throw null; } }
3223         public bool IsRequired { get { throw null; } }
3224         public System.Nullable<int> MaxValue { get { throw null; } }
3225         public System.Nullable<int> MinValue { get { throw null; } }
ToString()3226         public override string ToString() { throw null; }
3227     }
3228     public sealed partial class FunctionParameter : System.Data.Metadata.Edm.MetadataItem
3229     {
FunctionParameter()3230         internal FunctionParameter() { }
3231         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3232         public System.Data.Metadata.Edm.EdmFunction DeclaringFunction { get { throw null; } }
3233         public System.Data.Metadata.Edm.ParameterMode Mode { get { throw null; } }
3234         public string Name { get { throw null; } }
3235         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
ToString()3236         public override string ToString() { throw null; }
3237     }
3238     public abstract partial class GlobalItem : System.Data.Metadata.Edm.MetadataItem
3239     {
GlobalItem()3240         internal GlobalItem() { }
3241     }
3242     [System.CLSCompliantAttribute(false)]
3243     public abstract partial class ItemCollection : System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.GlobalItem>
3244     {
ItemCollection()3245         internal ItemCollection() { }
3246         public System.Data.Metadata.Edm.DataSpace DataSpace { get { throw null; } }
GetEntityContainer(string name)3247         public System.Data.Metadata.Edm.EntityContainer GetEntityContainer(string name) { throw null; }
GetEntityContainer(string name, bool ignoreCase)3248         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)3249         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)3250         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string functionName) { throw null; }
GetFunctions(string functionName, bool ignoreCase)3251         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.EdmFunction> GetFunctions(string functionName, bool ignoreCase) { throw null; }
3252         public virtual System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>() where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3253         public T GetItem<T>(string identity) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3254         public T GetItem<T>(string identity, bool ignoreCase) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
GetType(string name, string namespaceName)3255         public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName) { throw null; }
GetType(string name, string namespaceName, bool ignoreCase)3256         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)3257         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)3258         public bool TryGetEntityContainer(string name, out System.Data.Metadata.Edm.EntityContainer entityContainer) { entityContainer = default(System.Data.Metadata.Edm.EntityContainer); throw null; }
3259         public bool TryGetItem<T>(string identity, bool ignoreCase, out T item) where T : System.Data.Metadata.Edm.GlobalItem { item = default(T); throw null; }
3260         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)3261         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)3262         public bool TryGetType(string name, string namespaceName, out System.Data.Metadata.Edm.EdmType type) { type = default(System.Data.Metadata.Edm.EdmType); throw null; }
3263     }
3264     public abstract partial class MetadataItem
3265     {
MetadataItem()3266         internal MetadataItem() { }
3267         public abstract System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get; }
3268         public System.Data.Metadata.Edm.Documentation Documentation { get { throw null; } set { } }
3269         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.MetadataProperty> MetadataProperties { get { throw null; } }
GetBuiltInType(System.Data.Metadata.Edm.BuiltInTypeKind builtInTypeKind)3270         public static System.Data.Metadata.Edm.EdmType GetBuiltInType(System.Data.Metadata.Edm.BuiltInTypeKind builtInTypeKind) { throw null; }
GetGeneralFacetDescriptions()3271         public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> GetGeneralFacetDescriptions() { throw null; }
3272     }
3273     public sealed partial class MetadataProperty : System.Data.Metadata.Edm.MetadataItem
3274     {
MetadataProperty()3275         internal MetadataProperty() { }
3276         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3277         public string Name { get { throw null; } }
3278         public System.Data.Metadata.Edm.PropertyKind PropertyKind { get { throw null; } }
3279         public System.Data.Metadata.Edm.TypeUsage TypeUsage { get { throw null; } }
3280         public object Value { get { throw null; } }
3281     }
3282     public sealed partial class MetadataWorkspace
3283     {
3284         public static readonly double MaximumEdmVersionSupported;
MetadataWorkspace()3285         public MetadataWorkspace() { }
MetadataWorkspace(System.Collections.Generic.IEnumerable<string> paths, System.Collections.Generic.IEnumerable<System.Reflection.Assembly> assembliesToConsider)3286         public MetadataWorkspace(System.Collections.Generic.IEnumerable<string> paths, System.Collections.Generic.IEnumerable<System.Reflection.Assembly> assembliesToConsider) { }
ClearCache()3287         public static void ClearCache() { }
CreateEntitySqlParser()3288         public System.Data.Common.EntitySql.EntitySqlParser CreateEntitySqlParser() { throw null; }
CreateQueryCommandTree(System.Data.Common.CommandTrees.DbExpression query)3289         public System.Data.Common.CommandTrees.DbQueryCommandTree CreateQueryCommandTree(System.Data.Common.CommandTrees.DbExpression query) { throw null; }
GetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType)3290         public System.Data.Metadata.Edm.EnumType GetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType) { throw null; }
GetEdmSpaceType(System.Data.Metadata.Edm.StructuralType objectSpaceType)3291         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)3292         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)3293         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)3294         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)3295         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; }
3296         [System.CLSCompliantAttribute(false)]
GetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace)3297         public System.Data.Metadata.Edm.ItemCollection GetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
GetItems(System.Data.Metadata.Edm.DataSpace dataSpace)3298         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.GlobalItem> GetItems(System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
3299         public System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>(System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3300         public T GetItem<T>(string identity, bool ignoreCase, System.Data.Metadata.Edm.DataSpace dataSpace) where T : System.Data.Metadata.Edm.GlobalItem { throw null; }
3301         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)3302         public System.Data.Metadata.Edm.EnumType GetObjectSpaceType(System.Data.Metadata.Edm.EnumType edmSpaceType) { throw null; }
GetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType)3303         public System.Data.Metadata.Edm.StructuralType GetObjectSpaceType(System.Data.Metadata.Edm.StructuralType edmSpaceType) { throw null; }
GetPrimitiveTypes(System.Data.Metadata.Edm.DataSpace dataSpace)3304         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)3305         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; }
3306         [System.ObsoleteAttribute("Use MetadataWorkspace.GetRelevantMembersForUpdate(EntitySetBase, EntityTypeBase, bool) instead")]
GetRequiredOriginalValueMembers(System.Data.Metadata.Edm.EntitySetBase entitySet, System.Data.Metadata.Edm.EntityTypeBase entityType)3307         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)3308         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)3309         public System.Data.Metadata.Edm.EdmType GetType(string name, string namespaceName, System.Data.Metadata.Edm.DataSpace dataSpace) { throw null; }
LoadFromAssembly(System.Reflection.Assembly assembly)3310         public void LoadFromAssembly(System.Reflection.Assembly assembly) { }
LoadFromAssembly(System.Reflection.Assembly assembly, System.Action<string> logLoadMessage)3311         public void LoadFromAssembly(System.Reflection.Assembly assembly, System.Action<string> logLoadMessage) { }
3312         [System.CLSCompliantAttribute(false)]
RegisterItemCollection(System.Data.Metadata.Edm.ItemCollection collection)3313         public void RegisterItemCollection(System.Data.Metadata.Edm.ItemCollection collection) { }
TryGetEdmSpaceType(System.Data.Metadata.Edm.EnumType objectSpaceType, out System.Data.Metadata.Edm.EnumType edmSpaceType)3314         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)3315         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)3316         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)3317         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; }
3318         [System.CLSCompliantAttribute(false)]
TryGetItemCollection(System.Data.Metadata.Edm.DataSpace dataSpace, out System.Data.Metadata.Edm.ItemCollection collection)3319         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; }
3320         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; }
3321         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)3322         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)3323         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)3324         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)3325         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; }
3326     }
3327     public sealed partial class NavigationProperty : System.Data.Metadata.Edm.EdmMember
3328     {
NavigationProperty()3329         internal NavigationProperty() { }
3330         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3331         public System.Data.Metadata.Edm.RelationshipEndMember FromEndMember { get { throw null; } }
3332         public System.Data.Metadata.Edm.RelationshipType RelationshipType { get { throw null; } }
3333         public System.Data.Metadata.Edm.RelationshipEndMember ToEndMember { get { throw null; } }
GetDependentProperties()3334         public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.EdmProperty> GetDependentProperties() { throw null; }
3335     }
3336     [System.CLSCompliantAttribute(false)]
3337     public sealed partial class ObjectItemCollection : System.Data.Metadata.Edm.ItemCollection
3338     {
ObjectItemCollection()3339         public ObjectItemCollection() { }
GetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType)3340         public System.Type GetClrType(System.Data.Metadata.Edm.EnumType objectSpaceType) { throw null; }
GetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType)3341         public System.Type GetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType) { throw null; }
GetItems()3342         public override System.Collections.ObjectModel.ReadOnlyCollection<T> GetItems<T>() { throw null; }
GetPrimitiveTypes()3343         public System.Collections.Generic.IEnumerable<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
LoadFromAssembly(System.Reflection.Assembly assembly)3344         public void LoadFromAssembly(System.Reflection.Assembly assembly) { }
LoadFromAssembly(System.Reflection.Assembly assembly, System.Data.Metadata.Edm.EdmItemCollection edmItemCollection)3345         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)3346         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)3347         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)3348         public bool TryGetClrType(System.Data.Metadata.Edm.StructuralType objectSpaceType, out System.Type clrType) { clrType = default(System.Type); throw null; }
3349     }
3350     public enum OperationAction
3351     {
3352         Cascade = 1,
3353         None = 0,
3354         Restrict = 2,
3355     }
3356     public enum ParameterMode
3357     {
3358         In = 0,
3359         InOut = 2,
3360         Out = 1,
3361         ReturnValue = 3,
3362     }
3363     public enum ParameterTypeSemantics
3364     {
3365         AllowImplicitConversion = 0,
3366         AllowImplicitPromotion = 1,
3367         ExactMatchOnly = 2,
3368     }
3369     public sealed partial class PrimitiveType : System.Data.Metadata.Edm.SimpleType
3370     {
PrimitiveType()3371         internal PrimitiveType() { }
3372         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3373         public System.Type ClrEquivalentType { get { throw null; } }
3374         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.FacetDescription> FacetDescriptions { get { throw null; } }
3375         public System.Data.Metadata.Edm.PrimitiveTypeKind PrimitiveTypeKind { get { throw null; } }
GetEdmPrimitiveType()3376         public System.Data.Metadata.Edm.EdmType GetEdmPrimitiveType() { throw null; }
GetEdmPrimitiveType(System.Data.Metadata.Edm.PrimitiveTypeKind primitiveTypeKind)3377         public static System.Data.Metadata.Edm.PrimitiveType GetEdmPrimitiveType(System.Data.Metadata.Edm.PrimitiveTypeKind primitiveTypeKind) { throw null; }
GetEdmPrimitiveTypes()3378         public static System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetEdmPrimitiveTypes() { throw null; }
3379     }
3380     public enum PrimitiveTypeKind
3381     {
3382         Binary = 0,
3383         Boolean = 1,
3384         Byte = 2,
3385         DateTime = 3,
3386         DateTimeOffset = 14,
3387         Decimal = 4,
3388         Double = 5,
3389         Geography = 16,
3390         GeographyCollection = 30,
3391         GeographyLineString = 25,
3392         GeographyMultiLineString = 28,
3393         GeographyMultiPoint = 27,
3394         GeographyMultiPolygon = 29,
3395         GeographyPoint = 24,
3396         GeographyPolygon = 26,
3397         Geometry = 15,
3398         GeometryCollection = 23,
3399         GeometryLineString = 18,
3400         GeometryMultiLineString = 21,
3401         GeometryMultiPoint = 20,
3402         GeometryMultiPolygon = 22,
3403         GeometryPoint = 17,
3404         GeometryPolygon = 19,
3405         Guid = 6,
3406         Int16 = 9,
3407         Int32 = 10,
3408         Int64 = 11,
3409         SByte = 8,
3410         Single = 7,
3411         String = 12,
3412         Time = 13,
3413     }
3414     public enum PropertyKind
3415     {
3416         Extended = 1,
3417         System = 0,
3418     }
3419     public partial class ReadOnlyMetadataCollection<T> : System.Collections.ObjectModel.ReadOnlyCollection<T> where T : System.Data.Metadata.Edm.MetadataItem
3420     {
ReadOnlyMetadataCollection()3421         internal ReadOnlyMetadataCollection() : base (default(System.Collections.Generic.IList<T>)) { }
3422         public bool IsReadOnly { get { throw null; } }
3423         public virtual T this[string identity] { get { throw null; } }
Contains(string identity)3424         public virtual bool Contains(string identity) { throw null; }
GetEnumerator()3425         public new System.Data.Metadata.Edm.ReadOnlyMetadataCollection<T>.Enumerator GetEnumerator() { throw null; }
GetValue(string identity, bool ignoreCase)3426         public virtual T GetValue(string identity, bool ignoreCase) { throw null; }
IndexOf(T value)3427         public virtual new int IndexOf(T value) { throw null; }
TryGetValue(string identity, bool ignoreCase, out T item)3428         public virtual bool TryGetValue(string identity, bool ignoreCase, out T item) { item = default(T); throw null; }
3429         [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3430         public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
3431         {
3432             public T Current { get { throw null; } }
3433             object System.Collections.IEnumerator.Current { get { throw null; } }
DisposeSystem.Data.Metadata.Edm.ReadOnlyMetadataCollection.Enumerator3434             public void Dispose() { }
MoveNextSystem.Data.Metadata.Edm.ReadOnlyMetadataCollection.Enumerator3435             public bool MoveNext() { throw null; }
ResetSystem.Data.Metadata.Edm.ReadOnlyMetadataCollection.Enumerator3436             public void Reset() { }
3437         }
3438     }
3439     public sealed partial class ReferentialConstraint : System.Data.Metadata.Edm.MetadataItem
3440     {
ReferentialConstraint()3441         internal ReferentialConstraint() { }
3442         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3443         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> FromProperties { get { throw null; } }
3444         public System.Data.Metadata.Edm.RelationshipEndMember FromRole { get { throw null; } }
3445         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> ToProperties { get { throw null; } }
3446         public System.Data.Metadata.Edm.RelationshipEndMember ToRole { get { throw null; } }
ToString()3447         public override string ToString() { throw null; }
3448     }
3449     public sealed partial class RefType : System.Data.Metadata.Edm.EdmType
3450     {
RefType()3451         internal RefType() { }
3452         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3453         public System.Data.Metadata.Edm.EntityTypeBase ElementType { get { throw null; } }
3454     }
3455     public abstract partial class RelationshipEndMember : System.Data.Metadata.Edm.EdmMember
3456     {
RelationshipEndMember()3457         internal RelationshipEndMember() { }
3458         public System.Data.Metadata.Edm.OperationAction DeleteBehavior { get { throw null; } }
3459         public System.Data.Metadata.Edm.RelationshipMultiplicity RelationshipMultiplicity { get { throw null; } }
GetEntityType()3460         public System.Data.Metadata.Edm.EntityType GetEntityType() { throw null; }
3461     }
3462     public enum RelationshipMultiplicity
3463     {
3464         Many = 2,
3465         One = 1,
3466         ZeroOrOne = 0,
3467     }
3468     public abstract partial class RelationshipSet : System.Data.Metadata.Edm.EntitySetBase
3469     {
RelationshipSet()3470         internal RelationshipSet() { }
3471         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3472         public new System.Data.Metadata.Edm.RelationshipType ElementType { get { throw null; } }
3473     }
3474     public abstract partial class RelationshipType : System.Data.Metadata.Edm.EntityTypeBase
3475     {
RelationshipType()3476         internal RelationshipType() { }
3477         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.RelationshipEndMember> RelationshipEndMembers { get { throw null; } }
3478     }
3479     public sealed partial class RowType : System.Data.Metadata.Edm.StructuralType
3480     {
RowType()3481         internal RowType() { }
3482         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3483         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmProperty> Properties { get { throw null; } }
3484     }
3485     public abstract partial class SimpleType : System.Data.Metadata.Edm.EdmType
3486     {
SimpleType()3487         internal SimpleType() { }
3488     }
3489     public enum StoreGeneratedPattern
3490     {
3491         Computed = 2,
3492         Identity = 1,
3493         None = 0,
3494     }
3495     [System.CLSCompliantAttribute(false)]
3496     public sealed partial class StoreItemCollection : System.Data.Metadata.Edm.ItemCollection
3497     {
StoreItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders)3498         public StoreItemCollection(System.Collections.Generic.IEnumerable<System.Xml.XmlReader> xmlReaders) { }
StoreItemCollection(params string[] filePaths)3499         public StoreItemCollection(params string[] filePaths) { }
3500         public double StoreSchemaVersion { get { throw null; } }
GetPrimitiveTypes()3501         public System.Collections.ObjectModel.ReadOnlyCollection<System.Data.Metadata.Edm.PrimitiveType> GetPrimitiveTypes() { throw null; }
3502     }
3503     public abstract partial class StructuralType : System.Data.Metadata.Edm.EdmType
3504     {
StructuralType()3505         internal StructuralType() { }
3506         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.EdmMember> Members { get { throw null; } }
3507     }
3508     [System.Diagnostics.DebuggerDisplayAttribute("EdmType={EdmType}, Facets.Count={Facets.Count}")]
3509     public sealed partial class TypeUsage : System.Data.Metadata.Edm.MetadataItem
3510     {
TypeUsage()3511         internal TypeUsage() { }
3512         public override System.Data.Metadata.Edm.BuiltInTypeKind BuiltInTypeKind { get { throw null; } }
3513         public System.Data.Metadata.Edm.EdmType EdmType { get { throw null; } }
3514         public System.Data.Metadata.Edm.ReadOnlyMetadataCollection<System.Data.Metadata.Edm.Facet> Facets { get { throw null; } }
CreateBinaryTypeUsage(System.Data.Metadata.Edm.PrimitiveType primitiveType, bool isFixedLength)3515         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)3516         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)3517         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)3518         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)3519         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)3520         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)3521         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)3522         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)3523         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)3524         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)3525         public bool IsSubtypeOf(System.Data.Metadata.Edm.TypeUsage typeUsage) { throw null; }
ToString()3526         public override string ToString() { throw null; }
3527     }
3528 }
3529 namespace System.Data.Objects
3530 {
3531     public sealed partial class CompiledQuery
3532     {
CompiledQuery()3533         internal CompiledQuery() { }
3534         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; }
3535         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; }
3536         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; }
3537         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; }
3538         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; }
3539         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; }
3540         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; }
3541         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; }
3542         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; }
3543         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; }
3544         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; }
3545         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; }
3546         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; }
3547         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; }
3548         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; }
3549         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; }
3550     }
3551     public abstract partial class CurrentValueRecord : System.Data.Objects.DbUpdatableDataRecord
3552     {
CurrentValueRecord()3553         internal CurrentValueRecord() { }
3554     }
3555     public abstract partial class DbUpdatableDataRecord : System.Data.Common.DbDataRecord, System.Data.IDataRecord, System.Data.IExtendedDataRecord
3556     {
DbUpdatableDataRecord()3557         internal DbUpdatableDataRecord() { }
3558         public virtual System.Data.Common.DataRecordInfo DataRecordInfo { get { throw null; } }
3559         public override int FieldCount { get { throw null; } }
3560         public override object this[int ordinal] { get { throw null; } }
3561         public override object this[string name] { get { throw null; } }
GetBoolean(int ordinal)3562         public override bool GetBoolean(int ordinal) { throw null; }
GetByte(int ordinal)3563         public override byte GetByte(int ordinal) { throw null; }
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)3564         public override long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) { throw null; }
GetChar(int ordinal)3565         public override char GetChar(int ordinal) { throw null; }
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)3566         public override long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) { throw null; }
GetDataReader(int i)3567         public System.Data.Common.DbDataReader GetDataReader(int i) { throw null; }
GetDataRecord(int ordinal)3568         public System.Data.Common.DbDataRecord GetDataRecord(int ordinal) { throw null; }
GetDataTypeName(int ordinal)3569         public override string GetDataTypeName(int ordinal) { throw null; }
GetDateTime(int ordinal)3570         public override System.DateTime GetDateTime(int ordinal) { throw null; }
GetDbDataReader(int ordinal)3571         protected override System.Data.Common.DbDataReader GetDbDataReader(int ordinal) { throw null; }
GetDecimal(int ordinal)3572         public override decimal GetDecimal(int ordinal) { throw null; }
GetDouble(int ordinal)3573         public override double GetDouble(int ordinal) { throw null; }
GetFieldType(int ordinal)3574         public override System.Type GetFieldType(int ordinal) { throw null; }
GetFloat(int ordinal)3575         public override float GetFloat(int ordinal) { throw null; }
GetGuid(int ordinal)3576         public override System.Guid GetGuid(int ordinal) { throw null; }
GetInt16(int ordinal)3577         public override short GetInt16(int ordinal) { throw null; }
GetInt32(int ordinal)3578         public override int GetInt32(int ordinal) { throw null; }
GetInt64(int ordinal)3579         public override long GetInt64(int ordinal) { throw null; }
GetName(int ordinal)3580         public override string GetName(int ordinal) { throw null; }
GetOrdinal(string name)3581         public override int GetOrdinal(string name) { throw null; }
GetRecordValue(int ordinal)3582         protected abstract object GetRecordValue(int ordinal);
GetString(int ordinal)3583         public override string GetString(int ordinal) { throw null; }
GetValue(int ordinal)3584         public override object GetValue(int ordinal) { throw null; }
GetValues(object[] values)3585         public override int GetValues(object[] values) { throw null; }
IsDBNull(int ordinal)3586         public override bool IsDBNull(int ordinal) { throw null; }
SetBoolean(int ordinal, bool value)3587         public void SetBoolean(int ordinal, bool value) { }
SetByte(int ordinal, byte value)3588         public void SetByte(int ordinal, byte value) { }
SetChar(int ordinal, char value)3589         public void SetChar(int ordinal, char value) { }
SetDataRecord(int ordinal, System.Data.IDataRecord value)3590         public void SetDataRecord(int ordinal, System.Data.IDataRecord value) { }
SetDateTime(int ordinal, System.DateTime value)3591         public void SetDateTime(int ordinal, System.DateTime value) { }
SetDBNull(int ordinal)3592         public void SetDBNull(int ordinal) { }
SetDecimal(int ordinal, decimal value)3593         public void SetDecimal(int ordinal, decimal value) { }
SetDouble(int ordinal, double value)3594         public void SetDouble(int ordinal, double value) { }
SetFloat(int ordinal, float value)3595         public void SetFloat(int ordinal, float value) { }
SetGuid(int ordinal, System.Guid value)3596         public void SetGuid(int ordinal, System.Guid value) { }
SetInt16(int ordinal, short value)3597         public void SetInt16(int ordinal, short value) { }
SetInt32(int ordinal, int value)3598         public void SetInt32(int ordinal, int value) { }
SetInt64(int ordinal, long value)3599         public void SetInt64(int ordinal, long value) { }
SetRecordValue(int ordinal, object value)3600         protected abstract void SetRecordValue(int ordinal, object value);
SetString(int ordinal, string value)3601         public void SetString(int ordinal, string value) { }
SetValue(int ordinal, object value)3602         public void SetValue(int ordinal, object value) { }
SetValues(params object[] values)3603         public int SetValues(params object[] values) { throw null; }
System.Data.IDataRecord.GetData(int ordinal)3604         System.Data.IDataReader System.Data.IDataRecord.GetData(int ordinal) { throw null; }
3605     }
3606     public static partial class EntityFunctions
3607     {
3608         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddDays")]
AddDays(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue)3609         public static System.Nullable<System.DateTimeOffset> AddDays(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
3610         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddDays")]
AddDays(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue)3611         public static System.Nullable<System.DateTime> AddDays(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
3612         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
AddHours(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3613         public static System.Nullable<System.DateTimeOffset> AddHours(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3614         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
AddHours(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3615         public static System.Nullable<System.DateTime> AddHours(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3616         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddHours")]
AddHours(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3617         public static System.Nullable<System.TimeSpan> AddHours(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3618         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
AddMicroseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3619         public static System.Nullable<System.DateTimeOffset> AddMicroseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3620         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
AddMicroseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3621         public static System.Nullable<System.DateTime> AddMicroseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3622         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMicroseconds")]
AddMicroseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3623         public static System.Nullable<System.TimeSpan> AddMicroseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3624         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
AddMilliseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3625         public static System.Nullable<System.DateTimeOffset> AddMilliseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3626         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
AddMilliseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3627         public static System.Nullable<System.DateTime> AddMilliseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3628         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMilliseconds")]
AddMilliseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3629         public static System.Nullable<System.TimeSpan> AddMilliseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3630         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
AddMinutes(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3631         public static System.Nullable<System.DateTimeOffset> AddMinutes(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3632         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
AddMinutes(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3633         public static System.Nullable<System.DateTime> AddMinutes(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3634         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMinutes")]
AddMinutes(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3635         public static System.Nullable<System.TimeSpan> AddMinutes(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3636         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMonths")]
AddMonths(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue)3637         public static System.Nullable<System.DateTimeOffset> AddMonths(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
3638         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddMonths")]
AddMonths(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue)3639         public static System.Nullable<System.DateTime> AddMonths(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
3640         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
AddNanoseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3641         public static System.Nullable<System.DateTimeOffset> AddNanoseconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3642         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
AddNanoseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3643         public static System.Nullable<System.DateTime> AddNanoseconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3644         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddNanoseconds")]
AddNanoseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3645         public static System.Nullable<System.TimeSpan> AddNanoseconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3646         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
AddSeconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue)3647         public static System.Nullable<System.DateTimeOffset> AddSeconds(System.Nullable<System.DateTimeOffset> timeValue, System.Nullable<int> addValue) { throw null; }
3648         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
AddSeconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue)3649         public static System.Nullable<System.DateTime> AddSeconds(System.Nullable<System.DateTime> timeValue, System.Nullable<int> addValue) { throw null; }
3650         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddSeconds")]
AddSeconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue)3651         public static System.Nullable<System.TimeSpan> AddSeconds(System.Nullable<System.TimeSpan> timeValue, System.Nullable<int> addValue) { throw null; }
3652         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddYears")]
AddYears(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue)3653         public static System.Nullable<System.DateTimeOffset> AddYears(System.Nullable<System.DateTimeOffset> dateValue, System.Nullable<int> addValue) { throw null; }
3654         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "AddYears")]
AddYears(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue)3655         public static System.Nullable<System.DateTime> AddYears(System.Nullable<System.DateTime> dateValue, System.Nullable<int> addValue) { throw null; }
AsNonUnicode(string value)3656         public static string AsNonUnicode(string value) { throw null; }
AsUnicode(string value)3657         public static string AsUnicode(string value) { throw null; }
3658         [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)3659         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; }
3660         [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)3661         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; }
3662         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "CreateTime")]
CreateTime(System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second)3663         public static System.Nullable<System.TimeSpan> CreateTime(System.Nullable<int> hour, System.Nullable<int> minute, System.Nullable<double> second) { throw null; }
3664         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffDays")]
DiffDays(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2)3665         public static System.Nullable<int> DiffDays(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
3666         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffDays")]
DiffDays(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2)3667         public static System.Nullable<int> DiffDays(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
3668         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
DiffHours(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3669         public static System.Nullable<int> DiffHours(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3670         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
DiffHours(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3671         public static System.Nullable<int> DiffHours(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3672         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffHours")]
DiffHours(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3673         public static System.Nullable<int> DiffHours(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3674         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
DiffMicroseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3675         public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3676         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
DiffMicroseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3677         public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3678         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMicroseconds")]
DiffMicroseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3679         public static System.Nullable<int> DiffMicroseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3680         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
DiffMilliseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3681         public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3682         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
DiffMilliseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3683         public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3684         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMilliseconds")]
DiffMilliseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3685         public static System.Nullable<int> DiffMilliseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3686         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
DiffMinutes(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3687         public static System.Nullable<int> DiffMinutes(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3688         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
DiffMinutes(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3689         public static System.Nullable<int> DiffMinutes(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3690         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMinutes")]
DiffMinutes(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3691         public static System.Nullable<int> DiffMinutes(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3692         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMonths")]
DiffMonths(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2)3693         public static System.Nullable<int> DiffMonths(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
3694         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffMonths")]
DiffMonths(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2)3695         public static System.Nullable<int> DiffMonths(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
3696         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
DiffNanoseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3697         public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3698         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
DiffNanoseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3699         public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3700         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffNanoseconds")]
DiffNanoseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3701         public static System.Nullable<int> DiffNanoseconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3702         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
DiffSeconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2)3703         public static System.Nullable<int> DiffSeconds(System.Nullable<System.DateTimeOffset> timeValue1, System.Nullable<System.DateTimeOffset> timeValue2) { throw null; }
3704         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
DiffSeconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2)3705         public static System.Nullable<int> DiffSeconds(System.Nullable<System.DateTime> timeValue1, System.Nullable<System.DateTime> timeValue2) { throw null; }
3706         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffSeconds")]
DiffSeconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2)3707         public static System.Nullable<int> DiffSeconds(System.Nullable<System.TimeSpan> timeValue1, System.Nullable<System.TimeSpan> timeValue2) { throw null; }
3708         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffYears")]
DiffYears(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2)3709         public static System.Nullable<int> DiffYears(System.Nullable<System.DateTimeOffset> dateValue1, System.Nullable<System.DateTimeOffset> dateValue2) { throw null; }
3710         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "DiffYears")]
DiffYears(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2)3711         public static System.Nullable<int> DiffYears(System.Nullable<System.DateTime> dateValue1, System.Nullable<System.DateTime> dateValue2) { throw null; }
3712         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "GetTotalOffsetMinutes")]
GetTotalOffsetMinutes(System.Nullable<System.DateTimeOffset> dateTimeOffsetArgument)3713         public static System.Nullable<int> GetTotalOffsetMinutes(System.Nullable<System.DateTimeOffset> dateTimeOffsetArgument) { throw null; }
3714         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Left")]
Left(string stringArgument, System.Nullable<long> length)3715         public static string Left(string stringArgument, System.Nullable<long> length) { throw null; }
3716         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Reverse")]
Reverse(string stringArgument)3717         public static string Reverse(string stringArgument) { throw null; }
3718         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Right")]
Right(string stringArgument, System.Nullable<long> length)3719         public static string Right(string stringArgument, System.Nullable<long> length) { throw null; }
3720         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<decimal> collection)3721         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3722         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<double> collection)3723         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3724         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<int> collection)3725         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3726         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<long> collection)3727         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3728         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3729         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3730         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3731         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3732         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3733         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3734         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDev")]
StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3735         public static System.Nullable<double> StandardDeviation(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3736         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<decimal> collection)3737         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3738         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<double> collection)3739         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3740         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<int> collection)3741         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3742         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<long> collection)3743         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3744         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3745         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3746         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3747         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3748         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3749         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3750         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "StDevP")]
StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3751         public static System.Nullable<double> StandardDeviationP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3752         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Truncate")]
Truncate(System.Nullable<decimal> value, System.Nullable<int> digits)3753         public static System.Nullable<decimal> Truncate(System.Nullable<decimal> value, System.Nullable<int> digits) { throw null; }
3754         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Truncate")]
Truncate(System.Nullable<double> value, System.Nullable<int> digits)3755         public static System.Nullable<double> Truncate(System.Nullable<double> value, System.Nullable<int> digits) { throw null; }
3756         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "TruncateTime")]
TruncateTime(System.Nullable<System.DateTimeOffset> dateValue)3757         public static System.Nullable<System.DateTimeOffset> TruncateTime(System.Nullable<System.DateTimeOffset> dateValue) { throw null; }
3758         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "TruncateTime")]
TruncateTime(System.Nullable<System.DateTime> dateValue)3759         public static System.Nullable<System.DateTime> TruncateTime(System.Nullable<System.DateTime> dateValue) { throw null; }
3760         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<decimal> collection)3761         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3762         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<double> collection)3763         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3764         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<int> collection)3765         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3766         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<long> collection)3767         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3768         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3769         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3770         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3771         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3772         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3773         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3774         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "Var")]
Var(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3775         public static System.Nullable<double> Var(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3776         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<decimal> collection)3777         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<decimal> collection) { throw null; }
3778         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<double> collection)3779         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<double> collection) { throw null; }
3780         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<int> collection)3781         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<int> collection) { throw null; }
3782         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<long> collection)3783         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<long> collection) { throw null; }
3784         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection)3785         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<decimal>> collection) { throw null; }
3786         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection)3787         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<double>> collection) { throw null; }
3788         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection)3789         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<int>> collection) { throw null; }
3790         [System.Data.Objects.DataClasses.EdmFunctionAttribute("Edm", "VarP")]
VarP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection)3791         public static System.Nullable<double> VarP(System.Collections.Generic.IEnumerable<System.Nullable<long>> collection) { throw null; }
3792     }
3793     public partial interface IObjectSet<TEntity> : System.Collections.Generic.IEnumerable<TEntity>, System.Collections.IEnumerable, System.Linq.IQueryable, System.Linq.IQueryable<TEntity> where TEntity : class
3794     {
AddObject(TEntity entity)3795         void AddObject(TEntity entity);
Attach(TEntity entity)3796         void Attach(TEntity entity);
DeleteObject(TEntity entity)3797         void DeleteObject(TEntity entity);
Detach(TEntity entity)3798         void Detach(TEntity entity);
3799     }
3800     public enum MergeOption
3801     {
3802         AppendOnly = 0,
3803         NoTracking = 3,
3804         OverwriteChanges = 1,
3805         PreserveChanges = 2,
3806     }
3807     public partial class ObjectContext : System.IDisposable
3808     {
ObjectContext(System.Data.EntityClient.EntityConnection connection)3809         public ObjectContext(System.Data.EntityClient.EntityConnection connection) { }
ObjectContext(System.Data.EntityClient.EntityConnection connection, string defaultContainerName)3810         protected ObjectContext(System.Data.EntityClient.EntityConnection connection, string defaultContainerName) { }
ObjectContext(string connectionString)3811         public ObjectContext(string connectionString) { }
ObjectContext(string connectionString, string defaultContainerName)3812         protected ObjectContext(string connectionString, string defaultContainerName) { }
3813         public System.Nullable<int> CommandTimeout { get { throw null; } set { } }
3814         public System.Data.Common.DbConnection Connection { get { throw null; } }
3815         public System.Data.Objects.ObjectContextOptions ContextOptions { get { throw null; } }
3816         public string DefaultContainerName { get { throw null; } set { } }
3817         [System.CLSCompliantAttribute(false)]
3818         public System.Data.Metadata.Edm.MetadataWorkspace MetadataWorkspace { get { throw null; } }
3819         public System.Data.Objects.ObjectStateManager ObjectStateManager { get { throw null; } }
3820         protected internal System.Linq.IQueryProvider QueryProvider { get { throw null; } }
3821         public event System.Data.Objects.ObjectMaterializedEventHandler ObjectMaterialized { add { } remove { } }
3822         public event System.EventHandler SavingChanges { add { } remove { } }
AcceptAllChanges()3823         public void AcceptAllChanges() { }
AddObject(string entitySetName, object entity)3824         public void AddObject(string entitySetName, object entity) { }
3825         public TEntity ApplyCurrentValues<TEntity>(string entitySetName, TEntity currentEntity) where TEntity : class { throw null; }
3826         public TEntity ApplyOriginalValues<TEntity>(string entitySetName, TEntity originalEntity) where TEntity : class { throw null; }
3827         [System.ComponentModel.BrowsableAttribute(false)]
3828         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3829         [System.ObsoleteAttribute("Use ApplyCurrentValues instead")]
ApplyPropertyChanges(string entitySetName, object changed)3830         public void ApplyPropertyChanges(string entitySetName, object changed) { }
Attach(System.Data.Objects.DataClasses.IEntityWithKey entity)3831         public void Attach(System.Data.Objects.DataClasses.IEntityWithKey entity) { }
AttachTo(string entitySetName, object entity)3832         public void AttachTo(string entitySetName, object entity) { }
CreateDatabase()3833         public void CreateDatabase() { }
CreateDatabaseScript()3834         public string CreateDatabaseScript() { throw null; }
CreateEntityKey(string entitySetName, object entity)3835         public System.Data.EntityKey CreateEntityKey(string entitySetName, object entity) { throw null; }
3836         public System.Data.Objects.ObjectSet<TEntity> CreateObjectSet<TEntity>() where TEntity : class { throw null; }
3837         public System.Data.Objects.ObjectSet<TEntity> CreateObjectSet<TEntity>(string entitySetName) where TEntity : class { throw null; }
3838         public T CreateObject<T>() where T : class { throw null; }
CreateProxyTypes(System.Collections.Generic.IEnumerable<System.Type> types)3839         public void CreateProxyTypes(System.Collections.Generic.IEnumerable<System.Type> types) { }
CreateQuery(string queryString, params System.Data.Objects.ObjectParameter[] parameters)3840         public System.Data.Objects.ObjectQuery<T> CreateQuery<T>(string queryString, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
DatabaseExists()3841         public bool DatabaseExists() { throw null; }
DeleteDatabase()3842         public void DeleteDatabase() { }
DeleteObject(object entity)3843         public void DeleteObject(object entity) { }
Detach(object entity)3844         public void Detach(object entity) { }
DetectChanges()3845         public void DetectChanges() { }
Dispose()3846         public void Dispose() { }
Dispose(bool disposing)3847         protected virtual void Dispose(bool disposing) { }
ExecuteFunction(string functionName, params System.Data.Objects.ObjectParameter[] parameters)3848         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)3849         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)3850         public System.Data.Objects.ObjectResult<TElement> ExecuteFunction<TElement>(string functionName, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
ExecuteStoreCommand(string commandText, params object[] parameters)3851         public int ExecuteStoreCommand(string commandText, params object[] parameters) { throw null; }
ExecuteStoreQuery(string commandText, params object[] parameters)3852         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)3853         public System.Data.Objects.ObjectResult<TEntity> ExecuteStoreQuery<TEntity>(string commandText, string entitySetName, System.Data.Objects.MergeOption mergeOption, params object[] parameters) { throw null; }
GetKnownProxyTypes()3854         public static System.Collections.Generic.IEnumerable<System.Type> GetKnownProxyTypes() { throw null; }
GetObjectByKey(System.Data.EntityKey key)3855         public object GetObjectByKey(System.Data.EntityKey key) { throw null; }
GetObjectType(System.Type type)3856         public static System.Type GetObjectType(System.Type type) { throw null; }
LoadProperty(object entity, string navigationProperty)3857         public void LoadProperty(object entity, string navigationProperty) { }
LoadProperty(object entity, string navigationProperty, System.Data.Objects.MergeOption mergeOption)3858         public void LoadProperty(object entity, string navigationProperty, System.Data.Objects.MergeOption mergeOption) { }
LoadProperty(TEntity entity, System.Linq.Expressions.Expression<System.Func<TEntity, object>> selector)3859         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)3860         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)3861         public void Refresh(System.Data.Objects.RefreshMode refreshMode, System.Collections.IEnumerable collection) { }
Refresh(System.Data.Objects.RefreshMode refreshMode, object entity)3862         public void Refresh(System.Data.Objects.RefreshMode refreshMode, object entity) { }
SaveChanges()3863         public int SaveChanges() { throw null; }
3864         [System.ComponentModel.BrowsableAttribute(false)]
3865         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3866         [System.ObsoleteAttribute("Use SaveChanges(SaveOptions options) instead.")]
SaveChanges(bool acceptChangesDuringSave)3867         public int SaveChanges(bool acceptChangesDuringSave) { throw null; }
SaveChanges(System.Data.Objects.SaveOptions options)3868         public virtual int SaveChanges(System.Data.Objects.SaveOptions options) { throw null; }
Translate(System.Data.Common.DbDataReader reader)3869         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)3870         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)3871         public bool TryGetObjectByKey(System.Data.EntityKey key, out object value) { value = default(object); throw null; }
3872     }
3873     public sealed partial class ObjectContextOptions
3874     {
ObjectContextOptions()3875         internal ObjectContextOptions() { }
3876         public bool LazyLoadingEnabled { get { throw null; } set { } }
3877         public bool ProxyCreationEnabled { get { throw null; } set { } }
3878         public bool UseConsistentNullReferenceBehavior { get { throw null; } set { } }
3879         public bool UseCSharpNullComparisonBehavior { get { throw null; } set { } }
3880         public bool UseLegacyPreserveChangesBehavior { get { throw null; } set { } }
3881     }
3882     public partial class ObjectMaterializedEventArgs : System.EventArgs
3883     {
ObjectMaterializedEventArgs()3884         internal ObjectMaterializedEventArgs() { }
3885         public object Entity { get { throw null; } }
3886     }
ObjectMaterializedEventHandler(object sender, System.Data.Objects.ObjectMaterializedEventArgs e)3887     public delegate void ObjectMaterializedEventHandler(object sender, System.Data.Objects.ObjectMaterializedEventArgs e);
3888     public sealed partial class ObjectParameter
3889     {
ObjectParameter(string name, object value)3890         public ObjectParameter(string name, object value) { }
ObjectParameter(string name, System.Type type)3891         public ObjectParameter(string name, System.Type type) { }
3892         public string Name { get { throw null; } }
3893         public System.Type ParameterType { get { throw null; } }
3894         public object Value { get { throw null; } set { } }
3895     }
3896     public sealed partial class ObjectParameterCollection : System.Collections.Generic.ICollection<System.Data.Objects.ObjectParameter>, System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectParameter>, System.Collections.IEnumerable
3897     {
ObjectParameterCollection()3898         internal ObjectParameterCollection() { }
3899         public int Count { get { throw null; } }
3900         public System.Data.Objects.ObjectParameter this[string name] { get { throw null; } }
3901         bool System.Collections.Generic.ICollection<System.Data.Objects.ObjectParameter>.IsReadOnly { get { throw null; } }
Add(System.Data.Objects.ObjectParameter parameter)3902         public void Add(System.Data.Objects.ObjectParameter parameter) { }
Clear()3903         public void Clear() { }
Contains(System.Data.Objects.ObjectParameter parameter)3904         public bool Contains(System.Data.Objects.ObjectParameter parameter) { throw null; }
Contains(string name)3905         public bool Contains(string name) { throw null; }
CopyTo(System.Data.Objects.ObjectParameter[] array, int index)3906         public void CopyTo(System.Data.Objects.ObjectParameter[] array, int index) { }
Remove(System.Data.Objects.ObjectParameter parameter)3907         public bool Remove(System.Data.Objects.ObjectParameter parameter) { throw null; }
GetEnumerator()3908         System.Collections.Generic.IEnumerator<System.Data.Objects.ObjectParameter> System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectParameter>.GetEnumerator() { throw null; }
System.Collections.IEnumerable.GetEnumerator()3909         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
3910     }
3911     public abstract partial class ObjectQuery : System.Collections.IEnumerable, System.ComponentModel.IListSource, System.Linq.IOrderedQueryable, System.Linq.IQueryable
3912     {
ObjectQuery()3913         internal ObjectQuery() { }
3914         public string CommandText { get { throw null; } }
3915         public System.Data.Objects.ObjectContext Context { get { throw null; } }
3916         public bool EnablePlanCaching { get { throw null; } set { } }
3917         public System.Data.Objects.MergeOption MergeOption { get { throw null; } set { } }
3918         public System.Data.Objects.ObjectParameterCollection Parameters { get { throw null; } }
3919         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
3920         System.Type System.Linq.IQueryable.ElementType { get { throw null; } }
3921         System.Linq.Expressions.Expression System.Linq.IQueryable.Expression { get { throw null; } }
3922         System.Linq.IQueryProvider System.Linq.IQueryable.Provider { get { throw null; } }
Execute(System.Data.Objects.MergeOption mergeOption)3923         public System.Data.Objects.ObjectResult Execute(System.Data.Objects.MergeOption mergeOption) { throw null; }
GetResultType()3924         public System.Data.Metadata.Edm.TypeUsage GetResultType() { throw null; }
System.Collections.IEnumerable.GetEnumerator()3925         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.IListSource.GetList()3926         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
3927         [System.ComponentModel.BrowsableAttribute(false)]
ToTraceString()3928         public string ToTraceString() { throw null; }
3929     }
3930     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>
3931     {
ObjectQuery(string commandText, System.Data.Objects.ObjectContext context)3932         public ObjectQuery(string commandText, System.Data.Objects.ObjectContext context) { }
ObjectQuery(string commandText, System.Data.Objects.ObjectContext context, System.Data.Objects.MergeOption mergeOption)3933         public ObjectQuery(string commandText, System.Data.Objects.ObjectContext context, System.Data.Objects.MergeOption mergeOption) { }
3934         public string Name { get { throw null; } set { } }
Distinct()3935         public System.Data.Objects.ObjectQuery<T> Distinct() { throw null; }
Except(System.Data.Objects.ObjectQuery<T> query)3936         public System.Data.Objects.ObjectQuery<T> Except(System.Data.Objects.ObjectQuery<T> query) { throw null; }
Execute(System.Data.Objects.MergeOption mergeOption)3937         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)3938         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)3939         public System.Data.Objects.ObjectQuery<T> Include(string path) { throw null; }
Intersect(System.Data.Objects.ObjectQuery<T> query)3940         public System.Data.Objects.ObjectQuery<T> Intersect(System.Data.Objects.ObjectQuery<T> query) { throw null; }
OfType()3941         public System.Data.Objects.ObjectQuery<TResultType> OfType<TResultType>() { throw null; }
OrderBy(string keys, params System.Data.Objects.ObjectParameter[] parameters)3942         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)3943         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)3944         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)3945         public System.Data.Objects.ObjectQuery<T> Skip(string keys, string count, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
GetEnumerator()3946         System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
Top(string count, params System.Data.Objects.ObjectParameter[] parameters)3947         public System.Data.Objects.ObjectQuery<T> Top(string count, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
Union(System.Data.Objects.ObjectQuery<T> query)3948         public System.Data.Objects.ObjectQuery<T> Union(System.Data.Objects.ObjectQuery<T> query) { throw null; }
UnionAll(System.Data.Objects.ObjectQuery<T> query)3949         public System.Data.Objects.ObjectQuery<T> UnionAll(System.Data.Objects.ObjectQuery<T> query) { throw null; }
Where(string predicate, params System.Data.Objects.ObjectParameter[] parameters)3950         public System.Data.Objects.ObjectQuery<T> Where(string predicate, params System.Data.Objects.ObjectParameter[] parameters) { throw null; }
3951     }
3952     public abstract partial class ObjectResult : System.Collections.IEnumerable, System.ComponentModel.IListSource, System.IDisposable
3953     {
ObjectResult()3954         internal ObjectResult() { }
3955         public abstract System.Type ElementType { get; }
3956         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
Dispose()3957         public abstract void Dispose();
GetNextResult()3958         public System.Data.Objects.ObjectResult<TElement> GetNextResult<TElement>() { throw null; }
System.Collections.IEnumerable.GetEnumerator()3959         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.IListSource.GetList()3960         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
3961     }
3962     public sealed partial class ObjectResult<T> : System.Data.Objects.ObjectResult, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable
3963     {
ObjectResult()3964         internal ObjectResult() { }
3965         public override System.Type ElementType { get { throw null; } }
Dispose()3966         public override void Dispose() { }
GetEnumerator()3967         public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
3968     }
3969     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
3970     {
ObjectSet()3971         internal ObjectSet() : base (default(string), default(System.Data.Objects.ObjectContext)) { }
3972         public System.Data.Metadata.Edm.EntitySet EntitySet { get { throw null; } }
AddObject(TEntity entity)3973         public void AddObject(TEntity entity) { }
ApplyCurrentValues(TEntity currentEntity)3974         public TEntity ApplyCurrentValues(TEntity currentEntity) { throw null; }
ApplyOriginalValues(TEntity originalEntity)3975         public TEntity ApplyOriginalValues(TEntity originalEntity) { throw null; }
Attach(TEntity entity)3976         public void Attach(TEntity entity) { }
CreateObject()3977         public TEntity CreateObject() { throw null; }
3978         public T CreateObject<T>() where T : class, TEntity { throw null; }
DeleteObject(TEntity entity)3979         public void DeleteObject(TEntity entity) { }
Detach(TEntity entity)3980         public void Detach(TEntity entity) { }
3981     }
3982     public abstract partial class ObjectStateEntry : System.Data.Objects.DataClasses.IEntityChangeTracker
3983     {
ObjectStateEntry()3984         internal ObjectStateEntry() { }
3985         [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))]
3986         public abstract System.Data.Objects.CurrentValueRecord CurrentValues { get; }
3987         public abstract object Entity { get; }
3988         public abstract System.Data.EntityKey EntityKey { get; }
3989         public System.Data.Metadata.Edm.EntitySetBase EntitySet { get { throw null; } }
3990         public abstract bool IsRelationship { get; }
3991         public System.Data.Objects.ObjectStateManager ObjectStateManager { get { throw null; } }
3992         [System.Diagnostics.DebuggerBrowsableAttribute((System.Diagnostics.DebuggerBrowsableState)(0))]
3993         public abstract System.Data.Common.DbDataRecord OriginalValues { get; }
3994         public abstract System.Data.Objects.DataClasses.RelationshipManager RelationshipManager { get; }
3995         public System.Data.EntityState State { get { throw null; } }
3996         System.Data.EntityState System.Data.Objects.DataClasses.IEntityChangeTracker.EntityState { get { throw null; } }
AcceptChanges()3997         public abstract void AcceptChanges();
ApplyCurrentValues(object currentEntity)3998         public abstract void ApplyCurrentValues(object currentEntity);
ApplyOriginalValues(object originalEntity)3999         public abstract void ApplyOriginalValues(object originalEntity);
ChangeState(System.Data.EntityState state)4000         public abstract void ChangeState(System.Data.EntityState state);
Delete()4001         public abstract void Delete();
GetModifiedProperties()4002         public abstract System.Collections.Generic.IEnumerable<string> GetModifiedProperties();
GetUpdatableOriginalValues()4003         public abstract System.Data.Objects.OriginalValueRecord GetUpdatableOriginalValues();
IsPropertyChanged(string propertyName)4004         public abstract bool IsPropertyChanged(string propertyName);
RejectPropertyChanges(string propertyName)4005         public abstract void RejectPropertyChanges(string propertyName);
SetModified()4006         public abstract void SetModified();
SetModifiedProperty(string propertyName)4007         public abstract void SetModifiedProperty(string propertyName);
System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName)4008         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)4009         void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName) { }
System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanged(string entityMemberName)4010         void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanged(string entityMemberName) { }
System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanging(string entityMemberName)4011         void System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanging(string entityMemberName) { }
4012     }
4013     public partial class ObjectStateManager
4014     {
4015         [System.CLSCompliantAttribute(false)]
ObjectStateManager(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace)4016         public ObjectStateManager(System.Data.Metadata.Edm.MetadataWorkspace metadataWorkspace) { }
4017         [System.CLSCompliantAttribute(false)]
4018         public System.Data.Metadata.Edm.MetadataWorkspace MetadataWorkspace { get { throw null; } }
4019         public event System.ComponentModel.CollectionChangeEventHandler ObjectStateManagerChanged { add { } remove { } }
ChangeObjectState(object entity, System.Data.EntityState entityState)4020         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)4021         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)4022         public System.Data.Objects.ObjectStateEntry ChangeRelationshipState(object sourceEntity, object targetEntity, string relationshipName, string targetRoleName, System.Data.EntityState relationshipState) { throw null; }
4023         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)4024         public System.Collections.Generic.IEnumerable<System.Data.Objects.ObjectStateEntry> GetObjectStateEntries(System.Data.EntityState state) { throw null; }
GetObjectStateEntry(System.Data.EntityKey key)4025         public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(System.Data.EntityKey key) { throw null; }
GetObjectStateEntry(object entity)4026         public System.Data.Objects.ObjectStateEntry GetObjectStateEntry(object entity) { throw null; }
GetRelationshipManager(object entity)4027         public System.Data.Objects.DataClasses.RelationshipManager GetRelationshipManager(object entity) { throw null; }
TryGetObjectStateEntry(System.Data.EntityKey key, out System.Data.Objects.ObjectStateEntry entry)4028         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)4029         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)4030         public bool TryGetRelationshipManager(object entity, out System.Data.Objects.DataClasses.RelationshipManager relationshipManager) { relationshipManager = default(System.Data.Objects.DataClasses.RelationshipManager); throw null; }
4031     }
4032     public abstract partial class OriginalValueRecord : System.Data.Objects.DbUpdatableDataRecord
4033     {
OriginalValueRecord()4034         internal OriginalValueRecord() { }
4035     }
4036     public partial class ProxyDataContractResolver : System.Runtime.Serialization.DataContractResolver
4037     {
ProxyDataContractResolver()4038         public ProxyDataContractResolver() { }
ResolveName(string typeName, string typeNamespace, System.Type declaredType, System.Runtime.Serialization.DataContractResolver knownTypeResolver)4039         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)4040         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; }
4041     }
4042     public enum RefreshMode
4043     {
4044         ClientWins = 2,
4045         StoreWins = 1,
4046     }
4047     [System.FlagsAttribute]
4048     public enum SaveOptions
4049     {
4050         AcceptAllChangesAfterSave = 1,
4051         DetectChangesBeforeSave = 2,
4052         None = 0,
4053     }
4054 }
4055 namespace System.Data.Objects.DataClasses
4056 {
4057     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
4058     [System.SerializableAttribute]
4059     public abstract partial class ComplexObject : System.Data.Objects.DataClasses.StructuralObject
4060     {
ComplexObject()4061         protected ComplexObject() { }
ReportPropertyChanged(string property)4062         protected sealed override void ReportPropertyChanged(string property) { }
ReportPropertyChanging(string property)4063         protected sealed override void ReportPropertyChanging(string property) { }
4064     }
4065     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4066     public sealed partial class EdmComplexPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
4067     {
EdmComplexPropertyAttribute()4068         public EdmComplexPropertyAttribute() { }
4069     }
4070     [System.AttributeUsageAttribute((System.AttributeTargets)(4))]
4071     public sealed partial class EdmComplexTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
4072     {
EdmComplexTypeAttribute()4073         public EdmComplexTypeAttribute() { }
4074     }
4075     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false)]
4076     public sealed partial class EdmEntityTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
4077     {
EdmEntityTypeAttribute()4078         public EdmEntityTypeAttribute() { }
4079     }
4080     [System.AttributeUsageAttribute((System.AttributeTargets)(16))]
4081     public sealed partial class EdmEnumTypeAttribute : System.Data.Objects.DataClasses.EdmTypeAttribute
4082     {
EdmEnumTypeAttribute()4083         public EdmEnumTypeAttribute() { }
4084     }
4085     [System.AttributeUsageAttribute((System.AttributeTargets)(64), Inherited=false, AllowMultiple=false)]
4086     public sealed partial class EdmFunctionAttribute : System.Attribute
4087     {
EdmFunctionAttribute(string namespaceName, string functionName)4088         public EdmFunctionAttribute(string namespaceName, string functionName) { }
4089         public string FunctionName { get { throw null; } }
4090         public string NamespaceName { get { throw null; } }
4091     }
4092     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4093     public abstract partial class EdmPropertyAttribute : System.Attribute
4094     {
EdmPropertyAttribute()4095         internal EdmPropertyAttribute() { }
4096     }
4097     [System.AttributeUsageAttribute((System.AttributeTargets)(1), AllowMultiple=true)]
4098     public sealed partial class EdmRelationshipAttribute : System.Attribute
4099     {
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)4100         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)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, bool isForeignKey) { }
4102         public bool IsForeignKey { get { throw null; } }
4103         public string RelationshipName { get { throw null; } }
4104         public string RelationshipNamespaceName { get { throw null; } }
4105         public System.Data.Metadata.Edm.RelationshipMultiplicity Role1Multiplicity { get { throw null; } }
4106         public string Role1Name { get { throw null; } }
4107         public System.Type Role1Type { get { throw null; } }
4108         public System.Data.Metadata.Edm.RelationshipMultiplicity Role2Multiplicity { get { throw null; } }
4109         public string Role2Name { get { throw null; } }
4110         public System.Type Role2Type { get { throw null; } }
4111     }
4112     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4113     public sealed partial class EdmRelationshipNavigationPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
4114     {
EdmRelationshipNavigationPropertyAttribute(string relationshipNamespaceName, string relationshipName, string targetRoleName)4115         public EdmRelationshipNavigationPropertyAttribute(string relationshipNamespaceName, string relationshipName, string targetRoleName) { }
4116         public string RelationshipName { get { throw null; } }
4117         public string RelationshipNamespaceName { get { throw null; } }
4118         public string TargetRoleName { get { throw null; } }
4119     }
4120     [System.AttributeUsageAttribute((System.AttributeTargets)(128))]
4121     public sealed partial class EdmScalarPropertyAttribute : System.Data.Objects.DataClasses.EdmPropertyAttribute
4122     {
EdmScalarPropertyAttribute()4123         public EdmScalarPropertyAttribute() { }
4124         public bool EntityKeyProperty { get { throw null; } set { } }
4125         public bool IsNullable { get { throw null; } set { } }
4126     }
4127     [System.AttributeUsageAttribute((System.AttributeTargets)(5), AllowMultiple=true)]
4128     public sealed partial class EdmSchemaAttribute : System.Attribute
4129     {
EdmSchemaAttribute()4130         public EdmSchemaAttribute() { }
EdmSchemaAttribute(string assemblyGuid)4131         public EdmSchemaAttribute(string assemblyGuid) { }
4132     }
4133     public abstract partial class EdmTypeAttribute : System.Attribute
4134     {
EdmTypeAttribute()4135         internal EdmTypeAttribute() { }
4136         public string Name { get { throw null; } set { } }
4137         public string NamespaceName { get { throw null; } set { } }
4138     }
4139     [System.SerializableAttribute]
4140     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
4141     {
EntityCollection()4142         public EntityCollection() { }
4143         public int Count { get { throw null; } }
4144         public bool IsReadOnly { get { throw null; } }
4145         bool System.ComponentModel.IListSource.ContainsListCollection { get { throw null; } }
Add(TEntity entity)4146         public void Add(TEntity entity) { }
Attach(System.Collections.Generic.IEnumerable<TEntity> entities)4147         public void Attach(System.Collections.Generic.IEnumerable<TEntity> entities) { }
Attach(TEntity entity)4148         public void Attach(TEntity entity) { }
Clear()4149         public void Clear() { }
Contains(TEntity entity)4150         public bool Contains(TEntity entity) { throw null; }
CopyTo(TEntity[] array, int arrayIndex)4151         public void CopyTo(TEntity[] array, int arrayIndex) { }
CreateSourceQuery()4152         public System.Data.Objects.ObjectQuery<TEntity> CreateSourceQuery() { throw null; }
GetEnumerator()4153         public new System.Collections.Generic.IEnumerator<TEntity> GetEnumerator() { throw null; }
Load(System.Data.Objects.MergeOption mergeOption)4154         public override void Load(System.Data.Objects.MergeOption mergeOption) { }
4155         [System.ComponentModel.BrowsableAttribute(false)]
4156         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4157         [System.Runtime.Serialization.OnDeserializedAttribute]
OnCollectionDeserialized(System.Runtime.Serialization.StreamingContext context)4158         public void OnCollectionDeserialized(System.Runtime.Serialization.StreamingContext context) { }
4159         [System.ComponentModel.BrowsableAttribute(false)]
4160         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4161         [System.Runtime.Serialization.OnSerializingAttribute]
OnSerializing(System.Runtime.Serialization.StreamingContext context)4162         public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
Remove(TEntity entity)4163         public bool Remove(TEntity entity) { throw null; }
System.Collections.IEnumerable.GetEnumerator()4164         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ComponentModel.IListSource.GetList()4165         System.Collections.IList System.ComponentModel.IListSource.GetList() { throw null; }
4166     }
4167     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
4168     [System.SerializableAttribute]
4169     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
4170     {
EntityObject()4171         protected EntityObject() { }
4172         [System.ComponentModel.BrowsableAttribute(false)]
4173         [System.Runtime.Serialization.DataMemberAttribute]
4174         public System.Data.EntityKey EntityKey { get { throw null; } set { } }
4175         [System.ComponentModel.BrowsableAttribute(false)]
4176         [System.Xml.Serialization.XmlIgnoreAttribute]
4177         public System.Data.EntityState EntityState { get { throw null; } }
4178         System.Data.Objects.DataClasses.RelationshipManager System.Data.Objects.DataClasses.IEntityWithRelationships.RelationshipManager { get { throw null; } }
ReportPropertyChanged(string property)4179         protected sealed override void ReportPropertyChanged(string property) { }
ReportPropertyChanging(string property)4180         protected sealed override void ReportPropertyChanging(string property) { }
System.Data.Objects.DataClasses.IEntityWithChangeTracker.SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker)4181         void System.Data.Objects.DataClasses.IEntityWithChangeTracker.SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker) { }
4182     }
4183     [System.Runtime.Serialization.DataContractAttribute]
4184     [System.SerializableAttribute]
4185     public abstract partial class EntityReference : System.Data.Objects.DataClasses.RelatedEnd
4186     {
EntityReference()4187         internal EntityReference() { }
4188         [System.Runtime.Serialization.DataMemberAttribute]
4189         public System.Data.EntityKey EntityKey { get { throw null; } set { } }
4190     }
4191     [System.Runtime.Serialization.DataContractAttribute]
4192     [System.SerializableAttribute]
4193     public sealed partial class EntityReference<TEntity> : System.Data.Objects.DataClasses.EntityReference where TEntity : class
4194     {
EntityReference()4195         public EntityReference() { }
4196         [System.Xml.Serialization.SoapIgnoreAttribute]
4197         [System.Xml.Serialization.XmlIgnoreAttribute]
4198         public TEntity Value { get { throw null; } set { } }
Attach(TEntity entity)4199         public void Attach(TEntity entity) { }
CreateSourceQuery()4200         public System.Data.Objects.ObjectQuery<TEntity> CreateSourceQuery() { throw null; }
Load(System.Data.Objects.MergeOption mergeOption)4201         public override void Load(System.Data.Objects.MergeOption mergeOption) { }
4202         [System.ComponentModel.BrowsableAttribute(false)]
4203         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4204         [System.Runtime.Serialization.OnDeserializedAttribute]
OnRefDeserialized(System.Runtime.Serialization.StreamingContext context)4205         public void OnRefDeserialized(System.Runtime.Serialization.StreamingContext context) { }
4206         [System.ComponentModel.BrowsableAttribute(false)]
4207         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4208         [System.Runtime.Serialization.OnSerializingAttribute]
OnSerializing(System.Runtime.Serialization.StreamingContext context)4209         public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
4210     }
4211     public partial interface IEntityChangeTracker
4212     {
4213         System.Data.EntityState EntityState { get; }
EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName)4214         void EntityComplexMemberChanged(string entityMemberName, object complexObject, string complexObjectMemberName);
EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName)4215         void EntityComplexMemberChanging(string entityMemberName, object complexObject, string complexObjectMemberName);
EntityMemberChanged(string entityMemberName)4216         void EntityMemberChanged(string entityMemberName);
EntityMemberChanging(string entityMemberName)4217         void EntityMemberChanging(string entityMemberName);
4218     }
4219     public partial interface IEntityWithChangeTracker
4220     {
SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker)4221         void SetChangeTracker(System.Data.Objects.DataClasses.IEntityChangeTracker changeTracker);
4222     }
4223     public partial interface IEntityWithKey
4224     {
4225         System.Data.EntityKey EntityKey { get; set; }
4226     }
4227     public partial interface IEntityWithRelationships
4228     {
4229         System.Data.Objects.DataClasses.RelationshipManager RelationshipManager { get; }
4230     }
4231     public partial interface IRelatedEnd
4232     {
4233         bool IsLoaded { get; }
4234         string RelationshipName { get; }
4235         System.Data.Metadata.Edm.RelationshipSet RelationshipSet { get; }
4236         string SourceRoleName { get; }
4237         string TargetRoleName { get; }
Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4238         void Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
Add(object entity)4239         void Add(object entity);
Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4240         void Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
Attach(object entity)4241         void Attach(object entity);
CreateSourceQuery()4242         System.Collections.IEnumerable CreateSourceQuery();
GetEnumerator()4243         System.Collections.IEnumerator GetEnumerator();
Load()4244         void Load();
Load(System.Data.Objects.MergeOption mergeOption)4245         void Load(System.Data.Objects.MergeOption mergeOption);
Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4246         bool Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity);
Remove(object entity)4247         bool Remove(object entity);
4248     }
4249     [System.Runtime.Serialization.DataContractAttribute]
4250     [System.SerializableAttribute]
4251     public abstract partial class RelatedEnd : System.Data.Objects.DataClasses.IRelatedEnd
4252     {
RelatedEnd()4253         internal RelatedEnd() { }
4254         [System.Xml.Serialization.SoapIgnoreAttribute]
4255         [System.Xml.Serialization.XmlIgnoreAttribute]
4256         public bool IsLoaded { get { throw null; } }
4257         [System.Xml.Serialization.SoapIgnoreAttribute]
4258         [System.Xml.Serialization.XmlIgnoreAttribute]
4259         public string RelationshipName { get { throw null; } }
4260         [System.Xml.Serialization.SoapIgnoreAttribute]
4261         [System.Xml.Serialization.XmlIgnoreAttribute]
4262         public System.Data.Metadata.Edm.RelationshipSet RelationshipSet { get { throw null; } }
4263         [System.Xml.Serialization.SoapIgnoreAttribute]
4264         [System.Xml.Serialization.XmlIgnoreAttribute]
4265         public string SourceRoleName { get { throw null; } }
4266         [System.Xml.Serialization.SoapIgnoreAttribute]
4267         [System.Xml.Serialization.XmlIgnoreAttribute]
4268         public string TargetRoleName { get { throw null; } }
4269         public event System.ComponentModel.CollectionChangeEventHandler AssociationChanged { add { } remove { } }
GetEnumerator()4270         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Load()4271         public void Load() { }
Load(System.Data.Objects.MergeOption mergeOption)4272         public abstract void Load(System.Data.Objects.MergeOption mergeOption);
4273         [System.ComponentModel.BrowsableAttribute(false)]
4274         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4275         [System.Runtime.Serialization.OnDeserializedAttribute]
OnDeserialized(System.Runtime.Serialization.StreamingContext context)4276         public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
System.Data.Objects.DataClasses.IRelatedEnd.Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4277         void System.Data.Objects.DataClasses.IRelatedEnd.Add(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.Add(object entity)4278         void System.Data.Objects.DataClasses.IRelatedEnd.Add(object entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4279         void System.Data.Objects.DataClasses.IRelatedEnd.Attach(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.Attach(object entity)4280         void System.Data.Objects.DataClasses.IRelatedEnd.Attach(object entity) { }
System.Data.Objects.DataClasses.IRelatedEnd.CreateSourceQuery()4281         System.Collections.IEnumerable System.Data.Objects.DataClasses.IRelatedEnd.CreateSourceQuery() { throw null; }
System.Data.Objects.DataClasses.IRelatedEnd.Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity)4282         bool System.Data.Objects.DataClasses.IRelatedEnd.Remove(System.Data.Objects.DataClasses.IEntityWithRelationships entity) { throw null; }
System.Data.Objects.DataClasses.IRelatedEnd.Remove(object entity)4283         bool System.Data.Objects.DataClasses.IRelatedEnd.Remove(object entity) { throw null; }
4284     }
4285     public enum RelationshipKind
4286     {
4287         Association = 0,
4288     }
4289     [System.SerializableAttribute]
4290     public partial class RelationshipManager
4291     {
RelationshipManager()4292         internal RelationshipManager() { }
Create(System.Data.Objects.DataClasses.IEntityWithRelationships owner)4293         public static System.Data.Objects.DataClasses.RelationshipManager Create(System.Data.Objects.DataClasses.IEntityWithRelationships owner) { throw null; }
GetAllRelatedEnds()4294         public System.Collections.Generic.IEnumerable<System.Data.Objects.DataClasses.IRelatedEnd> GetAllRelatedEnds() { throw null; }
4295         public System.Data.Objects.DataClasses.EntityCollection<TTargetEntity> GetRelatedCollection<TTargetEntity>(string relationshipName, string targetRoleName) where TTargetEntity : class { throw null; }
GetRelatedEnd(string relationshipName, string targetRoleName)4296         public System.Data.Objects.DataClasses.IRelatedEnd GetRelatedEnd(string relationshipName, string targetRoleName) { throw null; }
4297         public System.Data.Objects.DataClasses.EntityReference<TTargetEntity> GetRelatedReference<TTargetEntity>(string relationshipName, string targetRoleName) where TTargetEntity : class { throw null; }
4298         [System.ComponentModel.BrowsableAttribute(false)]
4299         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4300         public void InitializeRelatedCollection<TTargetEntity>(string relationshipName, string targetRoleName, System.Data.Objects.DataClasses.EntityCollection<TTargetEntity> entityCollection) where TTargetEntity : class { }
4301         [System.ComponentModel.BrowsableAttribute(false)]
4302         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4303         public void InitializeRelatedReference<TTargetEntity>(string relationshipName, string targetRoleName, System.Data.Objects.DataClasses.EntityReference<TTargetEntity> entityReference) where TTargetEntity : class { }
4304         [System.ComponentModel.BrowsableAttribute(false)]
4305         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4306         [System.Runtime.Serialization.OnDeserializedAttribute]
OnDeserialized(System.Runtime.Serialization.StreamingContext context)4307         public void OnDeserialized(System.Runtime.Serialization.StreamingContext context) { }
4308         [System.ComponentModel.BrowsableAttribute(false)]
4309         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4310         [System.Runtime.Serialization.OnSerializingAttribute]
OnSerializing(System.Runtime.Serialization.StreamingContext context)4311         public void OnSerializing(System.Runtime.Serialization.StreamingContext context) { }
4312     }
4313     [System.Runtime.Serialization.DataContractAttribute(IsReference=true)]
4314     [System.SerializableAttribute]
4315     public abstract partial class StructuralObject : System.ComponentModel.INotifyPropertyChanged, System.ComponentModel.INotifyPropertyChanging
4316     {
4317         public static readonly string EntityKeyPropertyName;
StructuralObject()4318         protected StructuralObject() { }
4319         public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged { add { } remove { } }
4320         public event System.ComponentModel.PropertyChangingEventHandler PropertyChanging { add { } remove { } }
BinaryEquals(byte[] first, byte[] second)4321         protected internal static bool BinaryEquals(byte[] first, byte[] second) { throw null; }
DefaultDateTimeValue()4322         protected static System.DateTime DefaultDateTimeValue() { throw null; }
GetValidValue(byte[] currentValue)4323         protected internal static byte[] GetValidValue(byte[] currentValue) { throw null; }
4324         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)4325         protected virtual void OnPropertyChanged(string property) { }
OnPropertyChanging(string property)4326         protected virtual void OnPropertyChanging(string property) { }
ReportPropertyChanged(string property)4327         protected virtual void ReportPropertyChanged(string property) { }
ReportPropertyChanging(string property)4328         protected virtual void ReportPropertyChanging(string property) { }
SetValidValue(bool value)4329         protected internal static bool SetValidValue(bool value) { throw null; }
SetValidValue(bool value, string propertyName)4330         protected internal static bool SetValidValue(bool value, string propertyName) { throw null; }
SetValidValue(byte value)4331         protected internal static byte SetValidValue(byte value) { throw null; }
SetValidValue(byte value, string propertyName)4332         protected internal static byte SetValidValue(byte value, string propertyName) { throw null; }
SetValidValue(byte[] value, bool isNullable)4333         protected internal static byte[] SetValidValue(byte[] value, bool isNullable) { throw null; }
SetValidValue(byte[] value, bool isNullable, string propertyName)4334         protected internal static byte[] SetValidValue(byte[] value, bool isNullable, string propertyName) { throw null; }
SetValidValue(System.Data.Spatial.DbGeography value, bool isNullable)4335         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)4336         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)4337         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)4338         protected internal static System.Data.Spatial.DbGeometry SetValidValue(System.Data.Spatial.DbGeometry value, bool isNullable, string propertyName) { throw null; }
SetValidValue(System.DateTime value)4339         protected internal static System.DateTime SetValidValue(System.DateTime value) { throw null; }
SetValidValue(System.DateTime value, string propertyName)4340         protected internal static System.DateTime SetValidValue(System.DateTime value, string propertyName) { throw null; }
SetValidValue(System.DateTimeOffset value)4341         protected internal static System.DateTimeOffset SetValidValue(System.DateTimeOffset value) { throw null; }
SetValidValue(System.DateTimeOffset value, string propertyName)4342         protected internal static System.DateTimeOffset SetValidValue(System.DateTimeOffset value, string propertyName) { throw null; }
SetValidValue(decimal value)4343         protected internal static decimal SetValidValue(decimal value) { throw null; }
SetValidValue(decimal value, string propertyName)4344         protected internal static decimal SetValidValue(decimal value, string propertyName) { throw null; }
SetValidValue(double value)4345         protected internal static double SetValidValue(double value) { throw null; }
SetValidValue(double value, string propertyName)4346         protected internal static double SetValidValue(double value, string propertyName) { throw null; }
SetValidValue(System.Guid value)4347         protected internal static System.Guid SetValidValue(System.Guid value) { throw null; }
SetValidValue(System.Guid value, string propertyName)4348         protected internal static System.Guid SetValidValue(System.Guid value, string propertyName) { throw null; }
SetValidValue(short value)4349         protected internal static short SetValidValue(short value) { throw null; }
SetValidValue(short value, string propertyName)4350         protected internal static short SetValidValue(short value, string propertyName) { throw null; }
SetValidValue(int value)4351         protected internal static int SetValidValue(int value) { throw null; }
SetValidValue(int value, string propertyName)4352         protected internal static int SetValidValue(int value, string propertyName) { throw null; }
SetValidValue(long value)4353         protected internal static long SetValidValue(long value) { throw null; }
SetValidValue(long value, string propertyName)4354         protected internal static long SetValidValue(long value, string propertyName) { throw null; }
SetValidValue(System.Nullable<bool> value)4355         protected internal static System.Nullable<bool> SetValidValue(System.Nullable<bool> value) { throw null; }
SetValidValue(System.Nullable<bool> value, string propertyName)4356         protected internal static System.Nullable<bool> SetValidValue(System.Nullable<bool> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<byte> value)4357         protected internal static System.Nullable<byte> SetValidValue(System.Nullable<byte> value) { throw null; }
SetValidValue(System.Nullable<byte> value, string propertyName)4358         protected internal static System.Nullable<byte> SetValidValue(System.Nullable<byte> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.DateTimeOffset> value)4359         protected internal static System.Nullable<System.DateTimeOffset> SetValidValue(System.Nullable<System.DateTimeOffset> value) { throw null; }
SetValidValue(System.Nullable<System.DateTimeOffset> value, string propertyName)4360         protected internal static System.Nullable<System.DateTimeOffset> SetValidValue(System.Nullable<System.DateTimeOffset> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.DateTime> value)4361         protected internal static System.Nullable<System.DateTime> SetValidValue(System.Nullable<System.DateTime> value) { throw null; }
SetValidValue(System.Nullable<System.DateTime> value, string propertyName)4362         protected internal static System.Nullable<System.DateTime> SetValidValue(System.Nullable<System.DateTime> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<decimal> value)4363         protected internal static System.Nullable<decimal> SetValidValue(System.Nullable<decimal> value) { throw null; }
SetValidValue(System.Nullable<decimal> value, string propertyName)4364         protected internal static System.Nullable<decimal> SetValidValue(System.Nullable<decimal> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<double> value)4365         protected internal static System.Nullable<double> SetValidValue(System.Nullable<double> value) { throw null; }
SetValidValue(System.Nullable<double> value, string propertyName)4366         protected internal static System.Nullable<double> SetValidValue(System.Nullable<double> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.Guid> value)4367         protected internal static System.Nullable<System.Guid> SetValidValue(System.Nullable<System.Guid> value) { throw null; }
SetValidValue(System.Nullable<System.Guid> value, string propertyName)4368         protected internal static System.Nullable<System.Guid> SetValidValue(System.Nullable<System.Guid> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<short> value)4369         protected internal static System.Nullable<short> SetValidValue(System.Nullable<short> value) { throw null; }
SetValidValue(System.Nullable<short> value, string propertyName)4370         protected internal static System.Nullable<short> SetValidValue(System.Nullable<short> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<int> value)4371         protected internal static System.Nullable<int> SetValidValue(System.Nullable<int> value) { throw null; }
SetValidValue(System.Nullable<int> value, string propertyName)4372         protected internal static System.Nullable<int> SetValidValue(System.Nullable<int> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<long> value)4373         protected internal static System.Nullable<long> SetValidValue(System.Nullable<long> value) { throw null; }
SetValidValue(System.Nullable<long> value, string propertyName)4374         protected internal static System.Nullable<long> SetValidValue(System.Nullable<long> value, string propertyName) { throw null; }
4375         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<sbyte> value)4376         protected internal static System.Nullable<sbyte> SetValidValue(System.Nullable<sbyte> value) { throw null; }
4377         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<sbyte> value, string propertyName)4378         protected internal static System.Nullable<sbyte> SetValidValue(System.Nullable<sbyte> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<float> value)4379         protected internal static System.Nullable<float> SetValidValue(System.Nullable<float> value) { throw null; }
SetValidValue(System.Nullable<float> value, string propertyName)4380         protected internal static System.Nullable<float> SetValidValue(System.Nullable<float> value, string propertyName) { throw null; }
SetValidValue(System.Nullable<System.TimeSpan> value)4381         protected internal static System.Nullable<System.TimeSpan> SetValidValue(System.Nullable<System.TimeSpan> value) { throw null; }
SetValidValue(System.Nullable<System.TimeSpan> value, string propertyName)4382         protected internal static System.Nullable<System.TimeSpan> SetValidValue(System.Nullable<System.TimeSpan> value, string propertyName) { throw null; }
4383         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ushort> value)4384         protected internal static System.Nullable<ushort> SetValidValue(System.Nullable<ushort> value) { throw null; }
4385         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ushort> value, string propertyName)4386         protected internal static System.Nullable<ushort> SetValidValue(System.Nullable<ushort> value, string propertyName) { throw null; }
4387         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<uint> value)4388         protected internal static System.Nullable<uint> SetValidValue(System.Nullable<uint> value) { throw null; }
4389         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<uint> value, string propertyName)4390         protected internal static System.Nullable<uint> SetValidValue(System.Nullable<uint> value, string propertyName) { throw null; }
4391         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ulong> value)4392         protected internal static System.Nullable<ulong> SetValidValue(System.Nullable<ulong> value) { throw null; }
4393         [System.CLSCompliantAttribute(false)]
SetValidValue(System.Nullable<ulong> value, string propertyName)4394         protected internal static System.Nullable<ulong> SetValidValue(System.Nullable<ulong> value, string propertyName) { throw null; }
4395         [System.CLSCompliantAttribute(false)]
SetValidValue(sbyte value)4396         protected internal static sbyte SetValidValue(sbyte value) { throw null; }
4397         [System.CLSCompliantAttribute(false)]
SetValidValue(sbyte value, string propertyName)4398         protected internal static sbyte SetValidValue(sbyte value, string propertyName) { throw null; }
SetValidValue(float value)4399         protected internal static float SetValidValue(float value) { throw null; }
SetValidValue(float value, string propertyName)4400         protected internal static float SetValidValue(float value, string propertyName) { throw null; }
SetValidValue(string value, bool isNullable)4401         protected internal static string SetValidValue(string value, bool isNullable) { throw null; }
SetValidValue(string value, bool isNullable, string propertyName)4402         protected internal static string SetValidValue(string value, bool isNullable, string propertyName) { throw null; }
SetValidValue(System.TimeSpan value)4403         protected internal static System.TimeSpan SetValidValue(System.TimeSpan value) { throw null; }
SetValidValue(System.TimeSpan value, string propertyName)4404         protected internal static System.TimeSpan SetValidValue(System.TimeSpan value, string propertyName) { throw null; }
4405         [System.CLSCompliantAttribute(false)]
SetValidValue(ushort value)4406         protected internal static ushort SetValidValue(ushort value) { throw null; }
4407         [System.CLSCompliantAttribute(false)]
SetValidValue(ushort value, string propertyName)4408         protected internal static ushort SetValidValue(ushort value, string propertyName) { throw null; }
4409         [System.CLSCompliantAttribute(false)]
SetValidValue(uint value)4410         protected internal static uint SetValidValue(uint value) { throw null; }
4411         [System.CLSCompliantAttribute(false)]
SetValidValue(uint value, string propertyName)4412         protected internal static uint SetValidValue(uint value, string propertyName) { throw null; }
4413         [System.CLSCompliantAttribute(false)]
SetValidValue(ulong value)4414         protected internal static ulong SetValidValue(ulong value) { throw null; }
4415         [System.CLSCompliantAttribute(false)]
SetValidValue(ulong value, string propertyName)4416         protected internal static ulong SetValidValue(ulong value, string propertyName) { throw null; }
4417         protected internal T SetValidValue<T>(T oldValue, T newValue, string property) where T : System.Data.Objects.DataClasses.ComplexObject { throw null; }
4418         protected internal static TComplex VerifyComplexObjectIsNotNull<TComplex>(TComplex complexObject, string propertyName) where TComplex : System.Data.Objects.DataClasses.ComplexObject { throw null; }
4419     }
4420 }
4421 namespace System.Data.Objects.SqlClient
4422 {
4423     public static partial class SqlFunctions
4424     {
4425         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ACOS")]
Acos(System.Nullable<decimal> arg1)4426         public static System.Nullable<double> Acos(System.Nullable<decimal> arg1) { throw null; }
4427         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ACOS")]
Acos(System.Nullable<double> arg1)4428         public static System.Nullable<double> Acos(System.Nullable<double> arg1) { throw null; }
4429         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASCII")]
Ascii(string arg)4430         public static System.Nullable<int> Ascii(string arg) { throw null; }
4431         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASIN")]
Asin(System.Nullable<decimal> arg)4432         public static System.Nullable<double> Asin(System.Nullable<decimal> arg) { throw null; }
4433         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASIN")]
Asin(System.Nullable<double> arg)4434         public static System.Nullable<double> Asin(System.Nullable<double> arg) { throw null; }
4435         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATAN")]
Atan(System.Nullable<decimal> arg)4436         public static System.Nullable<double> Atan(System.Nullable<decimal> arg) { throw null; }
4437         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATAN")]
Atan(System.Nullable<double> arg)4438         public static System.Nullable<double> Atan(System.Nullable<double> arg) { throw null; }
4439         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATN2")]
Atan2(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2)4440         public static System.Nullable<double> Atan2(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2) { throw null; }
4441         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ATN2")]
Atan2(System.Nullable<double> arg1, System.Nullable<double> arg2)4442         public static System.Nullable<double> Atan2(System.Nullable<double> arg1, System.Nullable<double> arg2) { throw null; }
4443         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHAR")]
Char(System.Nullable<int> arg)4444         public static string Char(System.Nullable<int> arg) { throw null; }
4445         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(byte[] toSearch, byte[] target)4446         public static System.Nullable<int> CharIndex(byte[] toSearch, byte[] target) { throw null; }
4447         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(byte[] toSearch, byte[] target, System.Nullable<int> startLocation)4448         public static System.Nullable<int> CharIndex(byte[] toSearch, byte[] target, System.Nullable<int> startLocation) { throw null; }
4449         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(byte[] toSearch, byte[] target, System.Nullable<long> startLocation)4450         public static System.Nullable<long> CharIndex(byte[] toSearch, byte[] target, System.Nullable<long> startLocation) { throw null; }
4451         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(string toSearch, string target)4452         public static System.Nullable<int> CharIndex(string toSearch, string target) { throw null; }
4453         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(string toSearch, string target, System.Nullable<int> startLocation)4454         public static System.Nullable<int> CharIndex(string toSearch, string target, System.Nullable<int> startLocation) { throw null; }
4455         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHARINDEX")]
CharIndex(string toSearch, string target, System.Nullable<long> startLocation)4456         public static System.Nullable<long> CharIndex(string toSearch, string target, System.Nullable<long> startLocation) { throw null; }
4457         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(byte[] arg1)4458         public static System.Nullable<int> Checksum(byte[] arg1) { throw null; }
4459         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(byte[] arg1, byte[] arg2)4460         public static System.Nullable<int> Checksum(byte[] arg1, byte[] arg2) { throw null; }
4461         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(byte[] arg1, byte[] arg2, byte[] arg3)4462         public static System.Nullable<int> Checksum(byte[] arg1, byte[] arg2, byte[] arg3) { throw null; }
4463         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<bool> arg1)4464         public static System.Nullable<int> Checksum(System.Nullable<bool> arg1) { throw null; }
4465         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2)4466         public static System.Nullable<int> Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2) { throw null; }
4467         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2, System.Nullable<bool> arg3)4468         public static System.Nullable<int> Checksum(System.Nullable<bool> arg1, System.Nullable<bool> arg2, System.Nullable<bool> arg3) { throw null; }
4469         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTimeOffset> arg1)4470         public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1) { throw null; }
4471         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2)4472         public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2) { throw null; }
4473         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2, System.Nullable<System.DateTimeOffset> arg3)4474         public static System.Nullable<int> Checksum(System.Nullable<System.DateTimeOffset> arg1, System.Nullable<System.DateTimeOffset> arg2, System.Nullable<System.DateTimeOffset> arg3) { throw null; }
4475         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTime> arg1)4476         public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1) { throw null; }
4477         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2)4478         public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2) { throw null; }
4479         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2, System.Nullable<System.DateTime> arg3)4480         public static System.Nullable<int> Checksum(System.Nullable<System.DateTime> arg1, System.Nullable<System.DateTime> arg2, System.Nullable<System.DateTime> arg3) { throw null; }
4481         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<decimal> arg1)4482         public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1) { throw null; }
4483         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2)4484         public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2) { throw null; }
4485         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2, System.Nullable<decimal> arg3)4486         public static System.Nullable<int> Checksum(System.Nullable<decimal> arg1, System.Nullable<decimal> arg2, System.Nullable<decimal> arg3) { throw null; }
4487         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<double> arg1)4488         public static System.Nullable<int> Checksum(System.Nullable<double> arg1) { throw null; }
4489         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2)4490         public static System.Nullable<int> Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2) { throw null; }
4491         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2, System.Nullable<double> arg3)4492         public static System.Nullable<int> Checksum(System.Nullable<double> arg1, System.Nullable<double> arg2, System.Nullable<double> arg3) { throw null; }
4493         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.Guid> arg1)4494         public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1) { throw null; }
4495         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2)4496         public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2) { throw null; }
4497         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2, System.Nullable<System.Guid> arg3)4498         public static System.Nullable<int> Checksum(System.Nullable<System.Guid> arg1, System.Nullable<System.Guid> arg2, System.Nullable<System.Guid> arg3) { throw null; }
4499         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.TimeSpan> arg1)4500         public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1) { throw null; }
4501         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2)4502         public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2) { throw null; }
4503         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2, System.Nullable<System.TimeSpan> arg3)4504         public static System.Nullable<int> Checksum(System.Nullable<System.TimeSpan> arg1, System.Nullable<System.TimeSpan> arg2, System.Nullable<System.TimeSpan> arg3) { throw null; }
4505         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(string arg1)4506         public static System.Nullable<int> Checksum(string arg1) { throw null; }
4507         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(string arg1, string arg2)4508         public static System.Nullable<int> Checksum(string arg1, string arg2) { throw null; }
4509         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM")]
Checksum(string arg1, string arg2, string arg3)4510         public static System.Nullable<int> Checksum(string arg1, string arg2, string arg3) { throw null; }
4511         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM_AGG")]
ChecksumAggregate(System.Collections.Generic.IEnumerable<int> arg)4512         public static System.Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<int> arg) { throw null; }
4513         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CHECKSUM_AGG")]
ChecksumAggregate(System.Collections.Generic.IEnumerable<System.Nullable<int>> arg)4514         public static System.Nullable<int> ChecksumAggregate(System.Collections.Generic.IEnumerable<System.Nullable<int>> arg) { throw null; }
4515         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COS")]
Cos(System.Nullable<decimal> arg)4516         public static System.Nullable<double> Cos(System.Nullable<decimal> arg) { throw null; }
4517         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COS")]
Cos(System.Nullable<double> arg)4518         public static System.Nullable<double> Cos(System.Nullable<double> arg) { throw null; }
4519         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COT")]
Cot(System.Nullable<decimal> arg)4520         public static System.Nullable<double> Cot(System.Nullable<decimal> arg) { throw null; }
4521         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "COT")]
Cot(System.Nullable<double> arg)4522         public static System.Nullable<double> Cot(System.Nullable<double> arg) { throw null; }
4523         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CURRENT_TIMESTAMP")]
CurrentTimestamp()4524         public static System.Nullable<System.DateTime> CurrentTimestamp() { throw null; }
4525         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "CURRENT_USER")]
CurrentUser()4526         public static string CurrentUser() { throw null; }
4527         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(byte[] arg)4528         public static System.Nullable<int> DataLength(byte[] arg) { throw null; }
4529         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<bool> arg)4530         public static System.Nullable<int> DataLength(System.Nullable<bool> arg) { throw null; }
4531         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.DateTimeOffset> arg)4532         public static System.Nullable<int> DataLength(System.Nullable<System.DateTimeOffset> arg) { throw null; }
4533         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.DateTime> arg)4534         public static System.Nullable<int> DataLength(System.Nullable<System.DateTime> arg) { throw null; }
4535         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<decimal> arg)4536         public static System.Nullable<int> DataLength(System.Nullable<decimal> arg) { throw null; }
4537         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<double> arg)4538         public static System.Nullable<int> DataLength(System.Nullable<double> arg) { throw null; }
4539         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.Guid> arg)4540         public static System.Nullable<int> DataLength(System.Nullable<System.Guid> arg) { throw null; }
4541         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(System.Nullable<System.TimeSpan> arg)4542         public static System.Nullable<int> DataLength(System.Nullable<System.TimeSpan> arg) { throw null; }
4543         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATALENGTH")]
DataLength(string arg)4544         public static System.Nullable<int> DataLength(string arg) { throw null; }
4545         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTimeOffset> dateTimeOffsetArg)4546         public static System.Nullable<System.DateTimeOffset> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTimeOffset> dateTimeOffsetArg) { throw null; }
4547         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTime> date)4548         public static System.Nullable<System.DateTime> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.DateTime> date) { throw null; }
4549         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.TimeSpan> time)4550         public static System.Nullable<System.TimeSpan> DateAdd(string datePartArg, System.Nullable<double> number, System.Nullable<System.TimeSpan> time) { throw null; }
4551         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEADD")]
DateAdd(string datePartArg, System.Nullable<double> number, string date)4552         public static System.Nullable<System.DateTime> DateAdd(string datePartArg, System.Nullable<double> number, string date) { throw null; }
4553         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTimeOffset> endDate)4554         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4555         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTime> endDate)4556         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4557         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.TimeSpan> endDate)4558         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4559         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, string endDate)4560         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTimeOffset> startDate, string endDate) { throw null; }
4561         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTimeOffset> endDate)4562         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4563         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTime> endDate)4564         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4565         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.TimeSpan> endDate)4566         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4567         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, string endDate)4568         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.DateTime> startDate, string endDate) { throw null; }
4569         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTimeOffset> endDate)4570         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4571         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTime> endDate)4572         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4573         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.TimeSpan> endDate)4574         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4575         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, string endDate)4576         public static System.Nullable<int> DateDiff(string datePartArg, System.Nullable<System.TimeSpan> startDate, string endDate) { throw null; }
4577         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTimeOffset> endDate)4578         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTimeOffset> endDate) { throw null; }
4579         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTime> endDate)4580         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.DateTime> endDate) { throw null; }
4581         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, System.Nullable<System.TimeSpan> endDate)4582         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, System.Nullable<System.TimeSpan> endDate) { throw null; }
4583         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEDIFF")]
DateDiff(string datePartArg, string startDate, string endDate)4584         public static System.Nullable<int> DateDiff(string datePartArg, string startDate, string endDate) { throw null; }
4585         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, System.Nullable<System.DateTimeOffset> date)4586         public static string DateName(string datePartArg, System.Nullable<System.DateTimeOffset> date) { throw null; }
4587         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, System.Nullable<System.DateTime> date)4588         public static string DateName(string datePartArg, System.Nullable<System.DateTime> date) { throw null; }
4589         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, System.Nullable<System.TimeSpan> date)4590         public static string DateName(string datePartArg, System.Nullable<System.TimeSpan> date) { throw null; }
4591         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATENAME")]
DateName(string datePartArg, string date)4592         public static string DateName(string datePartArg, string date) { throw null; }
4593         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, System.Nullable<System.DateTimeOffset> date)4594         public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.DateTimeOffset> date) { throw null; }
4595         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, System.Nullable<System.DateTime> date)4596         public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.DateTime> date) { throw null; }
4597         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, System.Nullable<System.TimeSpan> date)4598         public static System.Nullable<int> DatePart(string datePartArg, System.Nullable<System.TimeSpan> date) { throw null; }
4599         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DATEPART")]
DatePart(string datePartArg, string date)4600         public static System.Nullable<int> DatePart(string datePartArg, string date) { throw null; }
4601         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<decimal> arg1)4602         public static System.Nullable<decimal> Degrees(System.Nullable<decimal> arg1) { throw null; }
4603         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<double> arg1)4604         public static System.Nullable<double> Degrees(System.Nullable<double> arg1) { throw null; }
4605         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<int> arg1)4606         public static System.Nullable<int> Degrees(System.Nullable<int> arg1) { throw null; }
4607         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DEGREES")]
Degrees(System.Nullable<long> arg1)4608         public static System.Nullable<long> Degrees(System.Nullable<long> arg1) { throw null; }
4609         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "DIFFERENCE")]
Difference(string string1, string string2)4610         public static System.Nullable<int> Difference(string string1, string string2) { throw null; }
4611         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "EXP")]
Exp(System.Nullable<decimal> arg)4612         public static System.Nullable<double> Exp(System.Nullable<decimal> arg) { throw null; }
4613         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "EXP")]
Exp(System.Nullable<double> arg)4614         public static System.Nullable<double> Exp(System.Nullable<double> arg) { throw null; }
4615         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "GETDATE")]
GetDate()4616         public static System.Nullable<System.DateTime> GetDate() { throw null; }
4617         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "GETUTCDATE")]
GetUtcDate()4618         public static System.Nullable<System.DateTime> GetUtcDate() { throw null; }
4619         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "HOST_NAME")]
HostName()4620         public static string HostName() { throw null; }
4621         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ISDATE")]
IsDate(string arg)4622         public static System.Nullable<int> IsDate(string arg) { throw null; }
4623         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ISNUMERIC")]
IsNumeric(string arg)4624         public static System.Nullable<int> IsNumeric(string arg) { throw null; }
4625         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG")]
Log(System.Nullable<decimal> arg)4626         public static System.Nullable<double> Log(System.Nullable<decimal> arg) { throw null; }
4627         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG")]
Log(System.Nullable<double> arg)4628         public static System.Nullable<double> Log(System.Nullable<double> arg) { throw null; }
4629         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG10")]
Log10(System.Nullable<decimal> arg)4630         public static System.Nullable<double> Log10(System.Nullable<decimal> arg) { throw null; }
4631         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "LOG10")]
Log10(System.Nullable<double> arg)4632         public static System.Nullable<double> Log10(System.Nullable<double> arg) { throw null; }
4633         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "NCHAR")]
NChar(System.Nullable<int> arg)4634         public static string NChar(System.Nullable<int> arg) { throw null; }
4635         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "PATINDEX")]
PatIndex(string stringPattern, string target)4636         public static System.Nullable<int> PatIndex(string stringPattern, string target) { throw null; }
4637         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "PI")]
Pi()4638         public static System.Nullable<double> Pi() { throw null; }
4639         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "QUOTENAME")]
QuoteName(string stringArg)4640         public static string QuoteName(string stringArg) { throw null; }
4641         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "QUOTENAME")]
QuoteName(string stringArg, string quoteCharacter)4642         public static string QuoteName(string stringArg, string quoteCharacter) { throw null; }
4643         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<decimal> arg)4644         public static System.Nullable<decimal> Radians(System.Nullable<decimal> arg) { throw null; }
4645         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<double> arg)4646         public static System.Nullable<double> Radians(System.Nullable<double> arg) { throw null; }
4647         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<int> arg)4648         public static System.Nullable<int> Radians(System.Nullable<int> arg) { throw null; }
4649         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RADIANS")]
Radians(System.Nullable<long> arg)4650         public static System.Nullable<long> Radians(System.Nullable<long> arg) { throw null; }
4651         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RAND")]
Rand()4652         public static System.Nullable<double> Rand() { throw null; }
4653         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RAND")]
Rand(System.Nullable<int> seed)4654         public static System.Nullable<double> Rand(System.Nullable<int> seed) { throw null; }
4655         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REPLICATE")]
Replicate(string target, System.Nullable<int> count)4656         public static string Replicate(string target, System.Nullable<int> count) { throw null; }
4657         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<decimal> arg)4658         public static System.Nullable<decimal> Sign(System.Nullable<decimal> arg) { throw null; }
4659         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<double> arg)4660         public static System.Nullable<double> Sign(System.Nullable<double> arg) { throw null; }
4661         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<int> arg)4662         public static System.Nullable<int> Sign(System.Nullable<int> arg) { throw null; }
4663         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIGN")]
Sign(System.Nullable<long> arg)4664         public static System.Nullable<long> Sign(System.Nullable<long> arg) { throw null; }
4665         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIN")]
Sin(System.Nullable<decimal> arg)4666         public static System.Nullable<double> Sin(System.Nullable<decimal> arg) { throw null; }
4667         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SIN")]
Sin(System.Nullable<double> arg)4668         public static System.Nullable<double> Sin(System.Nullable<double> arg) { throw null; }
4669         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SOUNDEX")]
SoundCode(string arg)4670         public static string SoundCode(string arg) { throw null; }
4671         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SPACE")]
Space(System.Nullable<int> arg1)4672         public static string Space(System.Nullable<int> arg1) { throw null; }
4673         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQUARE")]
Square(System.Nullable<decimal> arg1)4674         public static System.Nullable<double> Square(System.Nullable<decimal> arg1) { throw null; }
4675         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQUARE")]
Square(System.Nullable<double> arg1)4676         public static System.Nullable<double> Square(System.Nullable<double> arg1) { throw null; }
4677         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQRT")]
SquareRoot(System.Nullable<decimal> arg)4678         public static System.Nullable<double> SquareRoot(System.Nullable<decimal> arg) { throw null; }
4679         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "SQRT")]
SquareRoot(System.Nullable<double> arg)4680         public static System.Nullable<double> SquareRoot(System.Nullable<double> arg) { throw null; }
4681         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<decimal> number)4682         public static string StringConvert(System.Nullable<decimal> number) { throw null; }
4683         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<decimal> number, System.Nullable<int> length)4684         public static string StringConvert(System.Nullable<decimal> number, System.Nullable<int> length) { throw null; }
4685         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<decimal> number, System.Nullable<int> length, System.Nullable<int> decimalArg)4686         public static string StringConvert(System.Nullable<decimal> number, System.Nullable<int> length, System.Nullable<int> decimalArg) { throw null; }
4687         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<double> number)4688         public static string StringConvert(System.Nullable<double> number) { throw null; }
4689         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<double> number, System.Nullable<int> length)4690         public static string StringConvert(System.Nullable<double> number, System.Nullable<int> length) { throw null; }
4691         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STR")]
StringConvert(System.Nullable<double> number, System.Nullable<int> length, System.Nullable<int> decimalArg)4692         public static string StringConvert(System.Nullable<double> number, System.Nullable<int> length, System.Nullable<int> decimalArg) { throw null; }
4693         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "STUFF")]
Stuff(string stringInput, System.Nullable<int> start, System.Nullable<int> length, string stringReplacement)4694         public static string Stuff(string stringInput, System.Nullable<int> start, System.Nullable<int> length, string stringReplacement) { throw null; }
4695         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "TAN")]
Tan(System.Nullable<decimal> arg)4696         public static System.Nullable<double> Tan(System.Nullable<decimal> arg) { throw null; }
4697         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "TAN")]
Tan(System.Nullable<double> arg)4698         public static System.Nullable<double> Tan(System.Nullable<double> arg) { throw null; }
4699         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "UNICODE")]
Unicode(string arg)4700         public static System.Nullable<int> Unicode(string arg) { throw null; }
4701         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "USER_NAME")]
UserName()4702         public static string UserName() { throw null; }
4703         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "USER_NAME")]
UserName(System.Nullable<int> arg)4704         public static string UserName(System.Nullable<int> arg) { throw null; }
4705     }
4706     public static partial class SqlSpatialFunctions
4707     {
4708         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASTEXTZM")]
AsTextZM(System.Data.Spatial.DbGeography geographyValue)4709         public static string AsTextZM(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4710         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ASTEXTZM")]
AsTextZM(System.Data.Spatial.DbGeometry geometryValue)4711         public static string AsTextZM(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
4712         [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)4713         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; }
4714         [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)4715         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; }
4716         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ENVELOPEANGLE")]
EnvelopeAngle(System.Data.Spatial.DbGeography geographyValue)4717         public static System.Nullable<double> EnvelopeAngle(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4718         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "ENVELOPECENTER")]
EnvelopeCenter(System.Data.Spatial.DbGeography geographyValue)4719         public static System.Data.Spatial.DbGeography EnvelopeCenter(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4720         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "FILTER")]
Filter(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography geographyOther)4721         public static System.Nullable<bool> Filter(System.Data.Spatial.DbGeography geographyValue, System.Data.Spatial.DbGeography geographyOther) { throw null; }
4722         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "FILTER")]
Filter(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry geometryOther)4723         public static System.Nullable<bool> Filter(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry geometryOther) { throw null; }
4724         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "INSTANCEOF")]
InstanceOf(System.Data.Spatial.DbGeography geographyValue, string geometryTypeName)4725         public static System.Nullable<bool> InstanceOf(System.Data.Spatial.DbGeography geographyValue, string geometryTypeName) { throw null; }
4726         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "INSTANCEOF")]
InstanceOf(System.Data.Spatial.DbGeometry geometryValue, string geometryTypeName)4727         public static System.Nullable<bool> InstanceOf(System.Data.Spatial.DbGeometry geometryValue, string geometryTypeName) { throw null; }
4728         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "MAKEVALID")]
MakeValid(System.Data.Spatial.DbGeometry geometryValue)4729         public static System.Data.Spatial.DbGeometry MakeValid(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
4730         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "NUMRINGS")]
NumRings(System.Data.Spatial.DbGeography geographyValue)4731         public static System.Nullable<int> NumRings(System.Data.Spatial.DbGeography geographyValue) { throw null; }
4732         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "POINTGEOGRAPHY")]
PointGeography(System.Nullable<double> latitude, System.Nullable<double> longitude, System.Nullable<int> spatialReferenceId)4733         public static System.Data.Spatial.DbGeography PointGeography(System.Nullable<double> latitude, System.Nullable<double> longitude, System.Nullable<int> spatialReferenceId) { throw null; }
4734         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "POINTGEOMETRY")]
PointGeometry(System.Nullable<double> xCoordinate, System.Nullable<double> yCoordinate, System.Nullable<int> spatialReferenceId)4735         public static System.Data.Spatial.DbGeometry PointGeometry(System.Nullable<double> xCoordinate, System.Nullable<double> yCoordinate, System.Nullable<int> spatialReferenceId) { throw null; }
4736         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REDUCE")]
Reduce(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> tolerance)4737         public static System.Data.Spatial.DbGeography Reduce(System.Data.Spatial.DbGeography geographyValue, System.Nullable<double> tolerance) { throw null; }
4738         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "REDUCE")]
Reduce(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> tolerance)4739         public static System.Data.Spatial.DbGeometry Reduce(System.Data.Spatial.DbGeometry geometryValue, System.Nullable<double> tolerance) { throw null; }
4740         [System.Data.Objects.DataClasses.EdmFunctionAttribute("SqlServer", "RINGN")]
RingN(System.Data.Spatial.DbGeography geographyValue, System.Nullable<int> index)4741         public static System.Data.Spatial.DbGeography RingN(System.Data.Spatial.DbGeography geographyValue, System.Nullable<int> index) { throw null; }
4742     }
4743 }
4744 namespace System.Data.Spatial
4745 {
4746     [System.ComponentModel.DataAnnotations.BindableTypeAttribute]
4747     [System.Runtime.Serialization.DataContractAttribute]
4748     [System.SerializableAttribute]
4749     public partial class DbGeography
4750     {
DbGeography()4751         internal DbGeography() { }
4752         public System.Nullable<double> Area { get { throw null; } }
4753         public int CoordinateSystemId { get { throw null; } }
4754         public static int DefaultCoordinateSystemId { get { throw null; } }
4755         public int Dimension { get { throw null; } }
4756         public System.Nullable<int> ElementCount { get { throw null; } }
4757         public System.Nullable<double> Elevation { get { throw null; } }
4758         public System.Data.Spatial.DbGeography EndPoint { get { throw null; } }
4759         public System.Nullable<bool> IsClosed { get { throw null; } }
4760         public bool IsEmpty { get { throw null; } }
4761         public System.Nullable<double> Latitude { get { throw null; } }
4762         public System.Nullable<double> Length { get { throw null; } }
4763         public System.Nullable<double> Longitude { get { throw null; } }
4764         public System.Nullable<double> Measure { get { throw null; } }
4765         public System.Nullable<int> PointCount { get { throw null; } }
4766         public object ProviderValue { get { throw null; } }
4767         public string SpatialTypeName { get { throw null; } }
4768         public System.Data.Spatial.DbGeography StartPoint { get { throw null; } }
4769         [System.Runtime.Serialization.DataMemberAttribute(Name="Geography")]
4770         public System.Data.Spatial.DbGeographyWellKnownValue WellKnownValue { get { throw null; } set { } }
AsBinary()4771         public byte[] AsBinary() { throw null; }
AsGml()4772         public string AsGml() { throw null; }
AsText()4773         public string AsText() { throw null; }
Buffer(System.Nullable<double> distance)4774         public System.Data.Spatial.DbGeography Buffer(System.Nullable<double> distance) { throw null; }
Difference(System.Data.Spatial.DbGeography other)4775         public System.Data.Spatial.DbGeography Difference(System.Data.Spatial.DbGeography other) { throw null; }
Disjoint(System.Data.Spatial.DbGeography other)4776         public bool Disjoint(System.Data.Spatial.DbGeography other) { throw null; }
Distance(System.Data.Spatial.DbGeography other)4777         public System.Nullable<double> Distance(System.Data.Spatial.DbGeography other) { throw null; }
ElementAt(int index)4778         public System.Data.Spatial.DbGeography ElementAt(int index) { throw null; }
FromBinary(byte[] wellKnownBinary)4779         public static System.Data.Spatial.DbGeography FromBinary(byte[] wellKnownBinary) { throw null; }
FromBinary(byte[] wellKnownBinary, int coordinateSystemId)4780         public static System.Data.Spatial.DbGeography FromBinary(byte[] wellKnownBinary, int coordinateSystemId) { throw null; }
FromGml(string geographyMarkup)4781         public static System.Data.Spatial.DbGeography FromGml(string geographyMarkup) { throw null; }
FromGml(string geographyMarkup, int coordinateSystemId)4782         public static System.Data.Spatial.DbGeography FromGml(string geographyMarkup, int coordinateSystemId) { throw null; }
FromText(string wellKnownText)4783         public static System.Data.Spatial.DbGeography FromText(string wellKnownText) { throw null; }
FromText(string wellKnownText, int coordinateSystemId)4784         public static System.Data.Spatial.DbGeography FromText(string wellKnownText, int coordinateSystemId) { throw null; }
GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId)4785         public static System.Data.Spatial.DbGeography GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId) { throw null; }
GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId)4786         public static System.Data.Spatial.DbGeography GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId) { throw null; }
Intersection(System.Data.Spatial.DbGeography other)4787         public System.Data.Spatial.DbGeography Intersection(System.Data.Spatial.DbGeography other) { throw null; }
Intersects(System.Data.Spatial.DbGeography other)4788         public bool Intersects(System.Data.Spatial.DbGeography other) { throw null; }
LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4789         public static System.Data.Spatial.DbGeography LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId) { throw null; }
LineFromText(string lineWellKnownText, int coordinateSystemId)4790         public static System.Data.Spatial.DbGeography LineFromText(string lineWellKnownText, int coordinateSystemId) { throw null; }
MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4791         public static System.Data.Spatial.DbGeography MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId) { throw null; }
MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4792         public static System.Data.Spatial.DbGeography MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId) { throw null; }
MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4793         public static System.Data.Spatial.DbGeography MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4794         public static System.Data.Spatial.DbGeography MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId) { throw null; }
MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4795         public static System.Data.Spatial.DbGeography MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId)4796         public static System.Data.Spatial.DbGeography MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId) { throw null; }
PointAt(int index)4797         public System.Data.Spatial.DbGeography PointAt(int index) { throw null; }
PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4798         public static System.Data.Spatial.DbGeography PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId) { throw null; }
PointFromText(string pointWellKnownText, int coordinateSystemId)4799         public static System.Data.Spatial.DbGeography PointFromText(string pointWellKnownText, int coordinateSystemId) { throw null; }
PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4800         public static System.Data.Spatial.DbGeography PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId) { throw null; }
PolygonFromText(string polygonWellKnownText, int coordinateSystemId)4801         public static System.Data.Spatial.DbGeography PolygonFromText(string polygonWellKnownText, int coordinateSystemId) { throw null; }
SpatialEquals(System.Data.Spatial.DbGeography other)4802         public bool SpatialEquals(System.Data.Spatial.DbGeography other) { throw null; }
SymmetricDifference(System.Data.Spatial.DbGeography other)4803         public System.Data.Spatial.DbGeography SymmetricDifference(System.Data.Spatial.DbGeography other) { throw null; }
ToString()4804         public override string ToString() { throw null; }
Union(System.Data.Spatial.DbGeography other)4805         public System.Data.Spatial.DbGeography Union(System.Data.Spatial.DbGeography other) { throw null; }
4806     }
4807     [System.Runtime.Serialization.DataContractAttribute]
4808     public sealed partial class DbGeographyWellKnownValue
4809     {
DbGeographyWellKnownValue()4810         public DbGeographyWellKnownValue() { }
4811         [System.Runtime.Serialization.DataMemberAttribute(Order=1, IsRequired=false, EmitDefaultValue=false)]
4812         public int CoordinateSystemId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4813         [System.Runtime.Serialization.DataMemberAttribute(Order=3, IsRequired=false, EmitDefaultValue=false)]
4814         public byte[] WellKnownBinary { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4815         [System.Runtime.Serialization.DataMemberAttribute(Order=2, IsRequired=false, EmitDefaultValue=false)]
4816         public string WellKnownText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4817     }
4818     [System.ComponentModel.DataAnnotations.BindableTypeAttribute]
4819     [System.Runtime.Serialization.DataContractAttribute]
4820     [System.SerializableAttribute]
4821     public partial class DbGeometry
4822     {
DbGeometry()4823         internal DbGeometry() { }
4824         public System.Nullable<double> Area { get { throw null; } }
4825         public System.Data.Spatial.DbGeometry Boundary { get { throw null; } }
4826         public System.Data.Spatial.DbGeometry Centroid { get { throw null; } }
4827         public System.Data.Spatial.DbGeometry ConvexHull { get { throw null; } }
4828         public int CoordinateSystemId { get { throw null; } }
4829         public static int DefaultCoordinateSystemId { get { throw null; } }
4830         public int Dimension { get { throw null; } }
4831         public System.Nullable<int> ElementCount { get { throw null; } }
4832         public System.Nullable<double> Elevation { get { throw null; } }
4833         public System.Data.Spatial.DbGeometry EndPoint { get { throw null; } }
4834         public System.Data.Spatial.DbGeometry Envelope { get { throw null; } }
4835         public System.Data.Spatial.DbGeometry ExteriorRing { get { throw null; } }
4836         public System.Nullable<int> InteriorRingCount { get { throw null; } }
4837         public System.Nullable<bool> IsClosed { get { throw null; } }
4838         public bool IsEmpty { get { throw null; } }
4839         public System.Nullable<bool> IsRing { get { throw null; } }
4840         public bool IsSimple { get { throw null; } }
4841         public bool IsValid { get { throw null; } }
4842         public System.Nullable<double> Length { get { throw null; } }
4843         public System.Nullable<double> Measure { get { throw null; } }
4844         public System.Nullable<int> PointCount { get { throw null; } }
4845         public System.Data.Spatial.DbGeometry PointOnSurface { get { throw null; } }
4846         public object ProviderValue { get { throw null; } }
4847         public string SpatialTypeName { get { throw null; } }
4848         public System.Data.Spatial.DbGeometry StartPoint { get { throw null; } }
4849         [System.Runtime.Serialization.DataMemberAttribute(Name="Geometry")]
4850         public System.Data.Spatial.DbGeometryWellKnownValue WellKnownValue { get { throw null; } set { } }
4851         public System.Nullable<double> XCoordinate { get { throw null; } }
4852         public System.Nullable<double> YCoordinate { get { throw null; } }
AsBinary()4853         public byte[] AsBinary() { throw null; }
AsGml()4854         public string AsGml() { throw null; }
AsText()4855         public string AsText() { throw null; }
Buffer(System.Nullable<double> distance)4856         public System.Data.Spatial.DbGeometry Buffer(System.Nullable<double> distance) { throw null; }
Contains(System.Data.Spatial.DbGeometry other)4857         public bool Contains(System.Data.Spatial.DbGeometry other) { throw null; }
Crosses(System.Data.Spatial.DbGeometry other)4858         public bool Crosses(System.Data.Spatial.DbGeometry other) { throw null; }
Difference(System.Data.Spatial.DbGeometry other)4859         public System.Data.Spatial.DbGeometry Difference(System.Data.Spatial.DbGeometry other) { throw null; }
Disjoint(System.Data.Spatial.DbGeometry other)4860         public bool Disjoint(System.Data.Spatial.DbGeometry other) { throw null; }
Distance(System.Data.Spatial.DbGeometry other)4861         public System.Nullable<double> Distance(System.Data.Spatial.DbGeometry other) { throw null; }
ElementAt(int index)4862         public System.Data.Spatial.DbGeometry ElementAt(int index) { throw null; }
FromBinary(byte[] wellKnownBinary)4863         public static System.Data.Spatial.DbGeometry FromBinary(byte[] wellKnownBinary) { throw null; }
FromBinary(byte[] wellKnownBinary, int coordinateSystemId)4864         public static System.Data.Spatial.DbGeometry FromBinary(byte[] wellKnownBinary, int coordinateSystemId) { throw null; }
FromGml(string geometryMarkup)4865         public static System.Data.Spatial.DbGeometry FromGml(string geometryMarkup) { throw null; }
FromGml(string geometryMarkup, int coordinateSystemId)4866         public static System.Data.Spatial.DbGeometry FromGml(string geometryMarkup, int coordinateSystemId) { throw null; }
FromText(string wellKnownText)4867         public static System.Data.Spatial.DbGeometry FromText(string wellKnownText) { throw null; }
FromText(string wellKnownText, int coordinateSystemId)4868         public static System.Data.Spatial.DbGeometry FromText(string wellKnownText, int coordinateSystemId) { throw null; }
GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId)4869         public static System.Data.Spatial.DbGeometry GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId) { throw null; }
GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId)4870         public static System.Data.Spatial.DbGeometry GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId) { throw null; }
InteriorRingAt(int index)4871         public System.Data.Spatial.DbGeometry InteriorRingAt(int index) { throw null; }
Intersection(System.Data.Spatial.DbGeometry other)4872         public System.Data.Spatial.DbGeometry Intersection(System.Data.Spatial.DbGeometry other) { throw null; }
Intersects(System.Data.Spatial.DbGeometry other)4873         public bool Intersects(System.Data.Spatial.DbGeometry other) { throw null; }
LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4874         public static System.Data.Spatial.DbGeometry LineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId) { throw null; }
LineFromText(string lineWellKnownText, int coordinateSystemId)4875         public static System.Data.Spatial.DbGeometry LineFromText(string lineWellKnownText, int coordinateSystemId) { throw null; }
MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4876         public static System.Data.Spatial.DbGeometry MultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId) { throw null; }
MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4877         public static System.Data.Spatial.DbGeometry MultiLineFromText(string multiLineWellKnownText, int coordinateSystemId) { throw null; }
MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4878         public static System.Data.Spatial.DbGeometry MultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4879         public static System.Data.Spatial.DbGeometry MultiPointFromText(string multiPointWellKnownText, int coordinateSystemId) { throw null; }
MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4880         public static System.Data.Spatial.DbGeometry MultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId) { throw null; }
MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId)4881         public static System.Data.Spatial.DbGeometry MultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId) { throw null; }
Overlaps(System.Data.Spatial.DbGeometry other)4882         public bool Overlaps(System.Data.Spatial.DbGeometry other) { throw null; }
PointAt(int index)4883         public System.Data.Spatial.DbGeometry PointAt(int index) { throw null; }
PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4884         public static System.Data.Spatial.DbGeometry PointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId) { throw null; }
PointFromText(string pointWellKnownText, int coordinateSystemId)4885         public static System.Data.Spatial.DbGeometry PointFromText(string pointWellKnownText, int coordinateSystemId) { throw null; }
PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4886         public static System.Data.Spatial.DbGeometry PolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId) { throw null; }
PolygonFromText(string polygonWellKnownText, int coordinateSystemId)4887         public static System.Data.Spatial.DbGeometry PolygonFromText(string polygonWellKnownText, int coordinateSystemId) { throw null; }
Relate(System.Data.Spatial.DbGeometry other, string matrix)4888         public bool Relate(System.Data.Spatial.DbGeometry other, string matrix) { throw null; }
SpatialEquals(System.Data.Spatial.DbGeometry other)4889         public bool SpatialEquals(System.Data.Spatial.DbGeometry other) { throw null; }
SymmetricDifference(System.Data.Spatial.DbGeometry other)4890         public System.Data.Spatial.DbGeometry SymmetricDifference(System.Data.Spatial.DbGeometry other) { throw null; }
ToString()4891         public override string ToString() { throw null; }
Touches(System.Data.Spatial.DbGeometry other)4892         public bool Touches(System.Data.Spatial.DbGeometry other) { throw null; }
Union(System.Data.Spatial.DbGeometry other)4893         public System.Data.Spatial.DbGeometry Union(System.Data.Spatial.DbGeometry other) { throw null; }
Within(System.Data.Spatial.DbGeometry other)4894         public bool Within(System.Data.Spatial.DbGeometry other) { throw null; }
4895     }
4896     [System.Runtime.Serialization.DataContractAttribute]
4897     public sealed partial class DbGeometryWellKnownValue
4898     {
DbGeometryWellKnownValue()4899         public DbGeometryWellKnownValue() { }
4900         [System.Runtime.Serialization.DataMemberAttribute(Order=1, IsRequired=false, EmitDefaultValue=false)]
4901         public int CoordinateSystemId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4902         [System.Runtime.Serialization.DataMemberAttribute(Order=3, IsRequired=false, EmitDefaultValue=false)]
4903         public byte[] WellKnownBinary { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4904         [System.Runtime.Serialization.DataMemberAttribute(Order=2, IsRequired=false, EmitDefaultValue=false)]
4905         public string WellKnownText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
4906     }
4907     public abstract partial class DbSpatialDataReader
4908     {
DbSpatialDataReader()4909         protected DbSpatialDataReader() { }
GetGeography(int ordinal)4910         public abstract System.Data.Spatial.DbGeography GetGeography(int ordinal);
GetGeometry(int ordinal)4911         public abstract System.Data.Spatial.DbGeometry GetGeometry(int ordinal);
4912     }
4913     [System.SerializableAttribute]
4914     public abstract partial class DbSpatialServices
4915     {
DbSpatialServices()4916         protected DbSpatialServices() { }
4917         public static System.Data.Spatial.DbSpatialServices Default { get { throw null; } }
AsBinary(System.Data.Spatial.DbGeography geographyValue)4918         public abstract byte[] AsBinary(System.Data.Spatial.DbGeography geographyValue);
AsBinary(System.Data.Spatial.DbGeometry geometryValue)4919         public abstract byte[] AsBinary(System.Data.Spatial.DbGeometry geometryValue);
AsGml(System.Data.Spatial.DbGeography geographyValue)4920         public abstract string AsGml(System.Data.Spatial.DbGeography geographyValue);
AsGml(System.Data.Spatial.DbGeometry geometryValue)4921         public abstract string AsGml(System.Data.Spatial.DbGeometry geometryValue);
AsText(System.Data.Spatial.DbGeography geographyValue)4922         public abstract string AsText(System.Data.Spatial.DbGeography geographyValue);
AsText(System.Data.Spatial.DbGeometry geometryValue)4923         public abstract string AsText(System.Data.Spatial.DbGeometry geometryValue);
AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeography geographyValue)4924         public virtual string AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeography geographyValue) { throw null; }
AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeometry geometryValue)4925         public virtual string AsTextIncludingElevationAndMeasure(System.Data.Spatial.DbGeometry geometryValue) { throw null; }
Buffer(System.Data.Spatial.DbGeography geographyValue, double distance)4926         public abstract System.Data.Spatial.DbGeography Buffer(System.Data.Spatial.DbGeography geographyValue, double distance);
Buffer(System.Data.Spatial.DbGeometry geometryValue, double distance)4927         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)4928         public abstract bool Contains(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
CreateGeography(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue)4929         protected static System.Data.Spatial.DbGeography CreateGeography(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue) { throw null; }
CreateGeometry(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue)4930         protected static System.Data.Spatial.DbGeometry CreateGeometry(System.Data.Spatial.DbSpatialServices spatialServices, object providerValue) { throw null; }
CreateProviderValue(System.Data.Spatial.DbGeographyWellKnownValue wellKnownValue)4931         public abstract object CreateProviderValue(System.Data.Spatial.DbGeographyWellKnownValue wellKnownValue);
CreateProviderValue(System.Data.Spatial.DbGeometryWellKnownValue wellKnownValue)4932         public abstract object CreateProviderValue(System.Data.Spatial.DbGeometryWellKnownValue wellKnownValue);
CreateWellKnownValue(System.Data.Spatial.DbGeography geographyValue)4933         public abstract System.Data.Spatial.DbGeographyWellKnownValue CreateWellKnownValue(System.Data.Spatial.DbGeography geographyValue);
CreateWellKnownValue(System.Data.Spatial.DbGeometry geometryValue)4934         public abstract System.Data.Spatial.DbGeometryWellKnownValue CreateWellKnownValue(System.Data.Spatial.DbGeometry geometryValue);
Crosses(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry)4935         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)4936         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)4937         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)4938         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)4939         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)4940         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)4941         public abstract double Distance(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
ElementAt(System.Data.Spatial.DbGeography geographyValue, int index)4942         public abstract System.Data.Spatial.DbGeography ElementAt(System.Data.Spatial.DbGeography geographyValue, int index);
ElementAt(System.Data.Spatial.DbGeometry geometryValue, int index)4943         public abstract System.Data.Spatial.DbGeometry ElementAt(System.Data.Spatial.DbGeometry geometryValue, int index);
GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId)4944         public abstract System.Data.Spatial.DbGeography GeographyCollectionFromBinary(byte[] geographyCollectionWellKnownBinary, int coordinateSystemId);
GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId)4945         public abstract System.Data.Spatial.DbGeography GeographyCollectionFromText(string geographyCollectionWellKnownText, int coordinateSystemId);
GeographyFromBinary(byte[] wellKnownBinary)4946         public abstract System.Data.Spatial.DbGeography GeographyFromBinary(byte[] wellKnownBinary);
GeographyFromBinary(byte[] wellKnownBinary, int coordinateSystemId)4947         public abstract System.Data.Spatial.DbGeography GeographyFromBinary(byte[] wellKnownBinary, int coordinateSystemId);
GeographyFromGml(string geographyMarkup)4948         public abstract System.Data.Spatial.DbGeography GeographyFromGml(string geographyMarkup);
GeographyFromGml(string geographyMarkup, int coordinateSystemId)4949         public abstract System.Data.Spatial.DbGeography GeographyFromGml(string geographyMarkup, int coordinateSystemId);
GeographyFromProviderValue(object providerValue)4950         public abstract System.Data.Spatial.DbGeography GeographyFromProviderValue(object providerValue);
GeographyFromText(string wellKnownText)4951         public abstract System.Data.Spatial.DbGeography GeographyFromText(string wellKnownText);
GeographyFromText(string wellKnownText, int coordinateSystemId)4952         public abstract System.Data.Spatial.DbGeography GeographyFromText(string wellKnownText, int coordinateSystemId);
GeographyLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4953         public abstract System.Data.Spatial.DbGeography GeographyLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId);
GeographyLineFromText(string lineWellKnownText, int coordinateSystemId)4954         public abstract System.Data.Spatial.DbGeography GeographyLineFromText(string lineWellKnownText, int coordinateSystemId);
GeographyMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4955         public abstract System.Data.Spatial.DbGeography GeographyMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId);
GeographyMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4956         public abstract System.Data.Spatial.DbGeography GeographyMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId);
GeographyMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4957         public abstract System.Data.Spatial.DbGeography GeographyMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId);
GeographyMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4958         public abstract System.Data.Spatial.DbGeography GeographyMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId);
GeographyMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4959         public abstract System.Data.Spatial.DbGeography GeographyMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId);
GeographyMultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId)4960         public abstract System.Data.Spatial.DbGeography GeographyMultiPolygonFromText(string multiPolygonWellKnownText, int coordinateSystemId);
GeographyPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4961         public abstract System.Data.Spatial.DbGeography GeographyPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId);
GeographyPointFromText(string pointWellKnownText, int coordinateSystemId)4962         public abstract System.Data.Spatial.DbGeography GeographyPointFromText(string pointWellKnownText, int coordinateSystemId);
GeographyPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4963         public abstract System.Data.Spatial.DbGeography GeographyPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId);
GeographyPolygonFromText(string polygonWellKnownText, int coordinateSystemId)4964         public abstract System.Data.Spatial.DbGeography GeographyPolygonFromText(string polygonWellKnownText, int coordinateSystemId);
GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId)4965         public abstract System.Data.Spatial.DbGeometry GeometryCollectionFromBinary(byte[] geometryCollectionWellKnownBinary, int coordinateSystemId);
GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId)4966         public abstract System.Data.Spatial.DbGeometry GeometryCollectionFromText(string geometryCollectionWellKnownText, int coordinateSystemId);
GeometryFromBinary(byte[] wellKnownBinary)4967         public abstract System.Data.Spatial.DbGeometry GeometryFromBinary(byte[] wellKnownBinary);
GeometryFromBinary(byte[] wellKnownBinary, int coordinateSystemId)4968         public abstract System.Data.Spatial.DbGeometry GeometryFromBinary(byte[] wellKnownBinary, int coordinateSystemId);
GeometryFromGml(string geometryMarkup)4969         public abstract System.Data.Spatial.DbGeometry GeometryFromGml(string geometryMarkup);
GeometryFromGml(string geometryMarkup, int coordinateSystemId)4970         public abstract System.Data.Spatial.DbGeometry GeometryFromGml(string geometryMarkup, int coordinateSystemId);
GeometryFromProviderValue(object providerValue)4971         public abstract System.Data.Spatial.DbGeometry GeometryFromProviderValue(object providerValue);
GeometryFromText(string wellKnownText)4972         public abstract System.Data.Spatial.DbGeometry GeometryFromText(string wellKnownText);
GeometryFromText(string wellKnownText, int coordinateSystemId)4973         public abstract System.Data.Spatial.DbGeometry GeometryFromText(string wellKnownText, int coordinateSystemId);
GeometryLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId)4974         public abstract System.Data.Spatial.DbGeometry GeometryLineFromBinary(byte[] lineWellKnownBinary, int coordinateSystemId);
GeometryLineFromText(string lineWellKnownText, int coordinateSystemId)4975         public abstract System.Data.Spatial.DbGeometry GeometryLineFromText(string lineWellKnownText, int coordinateSystemId);
GeometryMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId)4976         public abstract System.Data.Spatial.DbGeometry GeometryMultiLineFromBinary(byte[] multiLineWellKnownBinary, int coordinateSystemId);
GeometryMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId)4977         public abstract System.Data.Spatial.DbGeometry GeometryMultiLineFromText(string multiLineWellKnownText, int coordinateSystemId);
GeometryMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId)4978         public abstract System.Data.Spatial.DbGeometry GeometryMultiPointFromBinary(byte[] multiPointWellKnownBinary, int coordinateSystemId);
GeometryMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId)4979         public abstract System.Data.Spatial.DbGeometry GeometryMultiPointFromText(string multiPointWellKnownText, int coordinateSystemId);
GeometryMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId)4980         public abstract System.Data.Spatial.DbGeometry GeometryMultiPolygonFromBinary(byte[] multiPolygonWellKnownBinary, int coordinateSystemId);
GeometryMultiPolygonFromText(string multiPolygonKnownText, int coordinateSystemId)4981         public abstract System.Data.Spatial.DbGeometry GeometryMultiPolygonFromText(string multiPolygonKnownText, int coordinateSystemId);
GeometryPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId)4982         public abstract System.Data.Spatial.DbGeometry GeometryPointFromBinary(byte[] pointWellKnownBinary, int coordinateSystemId);
GeometryPointFromText(string pointWellKnownText, int coordinateSystemId)4983         public abstract System.Data.Spatial.DbGeometry GeometryPointFromText(string pointWellKnownText, int coordinateSystemId);
GeometryPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId)4984         public abstract System.Data.Spatial.DbGeometry GeometryPolygonFromBinary(byte[] polygonWellKnownBinary, int coordinateSystemId);
GeometryPolygonFromText(string polygonWellKnownText, int coordinateSystemId)4985         public abstract System.Data.Spatial.DbGeometry GeometryPolygonFromText(string polygonWellKnownText, int coordinateSystemId);
GetArea(System.Data.Spatial.DbGeography geographyValue)4986         public abstract System.Nullable<double> GetArea(System.Data.Spatial.DbGeography geographyValue);
GetArea(System.Data.Spatial.DbGeometry geometryValue)4987         public abstract System.Nullable<double> GetArea(System.Data.Spatial.DbGeometry geometryValue);
GetBoundary(System.Data.Spatial.DbGeometry geometryValue)4988         public abstract System.Data.Spatial.DbGeometry GetBoundary(System.Data.Spatial.DbGeometry geometryValue);
GetCentroid(System.Data.Spatial.DbGeometry geometryValue)4989         public abstract System.Data.Spatial.DbGeometry GetCentroid(System.Data.Spatial.DbGeometry geometryValue);
GetConvexHull(System.Data.Spatial.DbGeometry geometryValue)4990         public abstract System.Data.Spatial.DbGeometry GetConvexHull(System.Data.Spatial.DbGeometry geometryValue);
GetCoordinateSystemId(System.Data.Spatial.DbGeography geographyValue)4991         public abstract int GetCoordinateSystemId(System.Data.Spatial.DbGeography geographyValue);
GetCoordinateSystemId(System.Data.Spatial.DbGeometry geometryValue)4992         public abstract int GetCoordinateSystemId(System.Data.Spatial.DbGeometry geometryValue);
GetDimension(System.Data.Spatial.DbGeography geographyValue)4993         public abstract int GetDimension(System.Data.Spatial.DbGeography geographyValue);
GetDimension(System.Data.Spatial.DbGeometry geometryValue)4994         public abstract int GetDimension(System.Data.Spatial.DbGeometry geometryValue);
GetElementCount(System.Data.Spatial.DbGeography geographyValue)4995         public abstract System.Nullable<int> GetElementCount(System.Data.Spatial.DbGeography geographyValue);
GetElementCount(System.Data.Spatial.DbGeometry geometryValue)4996         public abstract System.Nullable<int> GetElementCount(System.Data.Spatial.DbGeometry geometryValue);
GetElevation(System.Data.Spatial.DbGeography geographyValue)4997         public abstract System.Nullable<double> GetElevation(System.Data.Spatial.DbGeography geographyValue);
GetElevation(System.Data.Spatial.DbGeometry geometryValue)4998         public abstract System.Nullable<double> GetElevation(System.Data.Spatial.DbGeometry geometryValue);
GetEndPoint(System.Data.Spatial.DbGeography geographyValue)4999         public abstract System.Data.Spatial.DbGeography GetEndPoint(System.Data.Spatial.DbGeography geographyValue);
GetEndPoint(System.Data.Spatial.DbGeometry geometryValue)5000         public abstract System.Data.Spatial.DbGeometry GetEndPoint(System.Data.Spatial.DbGeometry geometryValue);
GetEnvelope(System.Data.Spatial.DbGeometry geometryValue)5001         public abstract System.Data.Spatial.DbGeometry GetEnvelope(System.Data.Spatial.DbGeometry geometryValue);
GetExteriorRing(System.Data.Spatial.DbGeometry geometryValue)5002         public abstract System.Data.Spatial.DbGeometry GetExteriorRing(System.Data.Spatial.DbGeometry geometryValue);
GetInteriorRingCount(System.Data.Spatial.DbGeometry geometryValue)5003         public abstract System.Nullable<int> GetInteriorRingCount(System.Data.Spatial.DbGeometry geometryValue);
GetIsClosed(System.Data.Spatial.DbGeography geographyValue)5004         public abstract System.Nullable<bool> GetIsClosed(System.Data.Spatial.DbGeography geographyValue);
GetIsClosed(System.Data.Spatial.DbGeometry geometryValue)5005         public abstract System.Nullable<bool> GetIsClosed(System.Data.Spatial.DbGeometry geometryValue);
GetIsEmpty(System.Data.Spatial.DbGeography geographyValue)5006         public abstract bool GetIsEmpty(System.Data.Spatial.DbGeography geographyValue);
GetIsEmpty(System.Data.Spatial.DbGeometry geometryValue)5007         public abstract bool GetIsEmpty(System.Data.Spatial.DbGeometry geometryValue);
GetIsRing(System.Data.Spatial.DbGeometry geometryValue)5008         public abstract System.Nullable<bool> GetIsRing(System.Data.Spatial.DbGeometry geometryValue);
GetIsSimple(System.Data.Spatial.DbGeometry geometryValue)5009         public abstract bool GetIsSimple(System.Data.Spatial.DbGeometry geometryValue);
GetIsValid(System.Data.Spatial.DbGeometry geometryValue)5010         public abstract bool GetIsValid(System.Data.Spatial.DbGeometry geometryValue);
GetLatitude(System.Data.Spatial.DbGeography geographyValue)5011         public abstract System.Nullable<double> GetLatitude(System.Data.Spatial.DbGeography geographyValue);
GetLength(System.Data.Spatial.DbGeography geographyValue)5012         public abstract System.Nullable<double> GetLength(System.Data.Spatial.DbGeography geographyValue);
GetLength(System.Data.Spatial.DbGeometry geometryValue)5013         public abstract System.Nullable<double> GetLength(System.Data.Spatial.DbGeometry geometryValue);
GetLongitude(System.Data.Spatial.DbGeography geographyValue)5014         public abstract System.Nullable<double> GetLongitude(System.Data.Spatial.DbGeography geographyValue);
GetMeasure(System.Data.Spatial.DbGeography geographyValue)5015         public abstract System.Nullable<double> GetMeasure(System.Data.Spatial.DbGeography geographyValue);
GetMeasure(System.Data.Spatial.DbGeometry geometryValue)5016         public abstract System.Nullable<double> GetMeasure(System.Data.Spatial.DbGeometry geometryValue);
GetPointCount(System.Data.Spatial.DbGeography geographyValue)5017         public abstract System.Nullable<int> GetPointCount(System.Data.Spatial.DbGeography geographyValue);
GetPointCount(System.Data.Spatial.DbGeometry geometryValue)5018         public abstract System.Nullable<int> GetPointCount(System.Data.Spatial.DbGeometry geometryValue);
GetPointOnSurface(System.Data.Spatial.DbGeometry geometryValue)5019         public abstract System.Data.Spatial.DbGeometry GetPointOnSurface(System.Data.Spatial.DbGeometry geometryValue);
GetSpatialTypeName(System.Data.Spatial.DbGeography geographyValue)5020         public abstract string GetSpatialTypeName(System.Data.Spatial.DbGeography geographyValue);
GetSpatialTypeName(System.Data.Spatial.DbGeometry geometryValue)5021         public abstract string GetSpatialTypeName(System.Data.Spatial.DbGeometry geometryValue);
GetStartPoint(System.Data.Spatial.DbGeography geographyValue)5022         public abstract System.Data.Spatial.DbGeography GetStartPoint(System.Data.Spatial.DbGeography geographyValue);
GetStartPoint(System.Data.Spatial.DbGeometry geometryValue)5023         public abstract System.Data.Spatial.DbGeometry GetStartPoint(System.Data.Spatial.DbGeometry geometryValue);
GetXCoordinate(System.Data.Spatial.DbGeometry geometryValue)5024         public abstract System.Nullable<double> GetXCoordinate(System.Data.Spatial.DbGeometry geometryValue);
GetYCoordinate(System.Data.Spatial.DbGeometry geometryValue)5025         public abstract System.Nullable<double> GetYCoordinate(System.Data.Spatial.DbGeometry geometryValue);
InteriorRingAt(System.Data.Spatial.DbGeometry geometryValue, int index)5026         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)5027         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)5028         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)5029         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)5030         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)5031         public abstract bool Overlaps(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
PointAt(System.Data.Spatial.DbGeography geographyValue, int index)5032         public abstract System.Data.Spatial.DbGeography PointAt(System.Data.Spatial.DbGeography geographyValue, int index);
PointAt(System.Data.Spatial.DbGeometry geometryValue, int index)5033         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)5034         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)5035         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)5036         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)5037         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)5038         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)5039         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)5040         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)5041         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)5042         public abstract bool Within(System.Data.Spatial.DbGeometry geometryValue, System.Data.Spatial.DbGeometry otherGeometry);
5043     }
5044 }
5045 namespace System.Data.SqlClient
5046 {
5047     [System.CLSCompliantAttribute(false)]
5048     public sealed partial class SqlProviderServices : System.Data.Common.DbProviderServices
5049     {
SqlProviderServices()5050         internal SqlProviderServices() { }
5051         public static System.Data.SqlClient.SqlProviderServices SingletonInstance { get { throw null; } }
CreateDbCommandDefinition(System.Data.Common.DbProviderManifest providerManifest, System.Data.Common.CommandTrees.DbCommandTree commandTree)5052         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)5053         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)5054         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)5055         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)5056         protected override void DbDeleteDatabase(System.Data.Common.DbConnection connection, System.Nullable<int> commandTimeout, System.Data.Metadata.Edm.StoreItemCollection storeItemCollection) { }
DbGetSpatialServices(string versionHint)5057         protected override System.Data.Spatial.DbSpatialServices DbGetSpatialServices(string versionHint) { throw null; }
GetDbProviderManifest(string versionHint)5058         protected override System.Data.Common.DbProviderManifest GetDbProviderManifest(string versionHint) { throw null; }
GetDbProviderManifestToken(System.Data.Common.DbConnection connection)5059         protected override string GetDbProviderManifestToken(System.Data.Common.DbConnection connection) { throw null; }
GetDbSpatialDataReader(System.Data.Common.DbDataReader fromReader, string versionHint)5060         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)5061         protected override void SetDbParameterValue(System.Data.Common.DbParameter parameter, System.Data.Metadata.Edm.TypeUsage parameterType, object value) { }
5062     }
5063 }
5064