2 instantiations of ContextTypeTableNamePair
System.Web.DynamicData (2)
DynamicData\MetaModel.cs (2)
330
_tablesByContextAndName.Add(new
ContextTypeTableNamePair
(table.DataContextType, table.Provider.Name), table);
497
if (!_tablesByContextAndName.TryGetValue(new
ContextTypeTableNamePair
(contextType, tableName), out table)) {
5 references to ContextTypeTableNamePair
System.Web.DynamicData (5)
DynamicData\MetaModel.cs (5)
25
private Dictionary<
ContextTypeTableNamePair
, MetaTable> _tablesByContextAndName = new Dictionary<
ContextTypeTableNamePair
, MetaTable>();
580
private class ContextTypeTableNamePair : IEquatable<
ContextTypeTableNamePair
> {
595
public bool Equals(
ContextTypeTableNamePair
other) {
607
return Equals(obj as
ContextTypeTableNamePair
);