You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,25 @@
|
||||
namespace System.Web.DynamicData {
|
||||
using System;
|
||||
using System.Web.DynamicData.ModelProviders;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
internal interface IMetaModel {
|
||||
string DynamicDataFolderVirtualPath { get; set; }
|
||||
IFieldTemplateFactory FieldTemplateFactory { get; set; }
|
||||
string GetActionPath(string tableName, string action, object row);
|
||||
IMetaTable GetTable(string tableName, Type contextType);
|
||||
IMetaTable GetTable(string uniqueTableName);
|
||||
IMetaTable GetTable(Type entityType);
|
||||
void RegisterContext(Func<object> contextFactory);
|
||||
void RegisterContext(Func<object> contextFactory, ContextConfiguration configuration);
|
||||
void RegisterContext(Type contextType);
|
||||
void RegisterContext(Type contextType, ContextConfiguration configuration);
|
||||
void RegisterContext(DataModelProvider dataModelProvider);
|
||||
void RegisterContext(DataModelProvider dataModelProvider, ContextConfiguration configuration);
|
||||
ReadOnlyCollection<IMetaTable> Tables { get; }
|
||||
bool TryGetTable(string uniqueTableName, out IMetaTable table);
|
||||
bool TryGetTable(Type entityType, out IMetaTable table);
|
||||
List<IMetaTable> VisibleTables { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user