2 writes to AttachDBFilename
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlConnectionStringBuilder.cs (1)
265case Keywords.AttachDBFilename: AttachDBFilename = ConvertToString(value); break;
System.Data.Entity (1)
System\Data\SqlClient\SqlProviderServices.cs (1)
1090AttachDBFilename = string.Empty, // any AttachDB path specified is not relevant to master
7 references to AttachDBFilename
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlConnectionStringBuilder.cs (1)
953case Keywords.AttachDBFilename: return AttachDBFilename;
System.Data.Entity (5)
System\Data\SqlClient\SqlProviderServices.cs (5)
792string attachDBFile = connectionStringBuilder.AttachDBFilename; 895if (string.IsNullOrEmpty(connectionBuilder.InitialCatalog) && string.IsNullOrEmpty(connectionBuilder.AttachDBFilename)) 909if (!string.IsNullOrEmpty(connectionBuilder.AttachDBFilename)) 923string fileName = GetMdfFileName(connectionBuilder.AttachDBFilename); 979string attachDBFile = connectionBuilder.AttachDBFilename;
System.Web (1)
State\sqlstateclientmanager.cs (1)
214database = scsb.AttachDBFilename;