1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.DynamicData;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MonoTests.DataSource
{
[PersistChildren (false)]
[ParseChildren (true)]
public class DynamicDataSource : DataSourceControl, IDynamicDataSource
{
const string DEFAULT_VIEW_NAME = "DefaultView";
static readonly string[] emptyNames = new string[] { "DefaultView" };
DataSourceView defaultView;
ParameterCollection whereCollection;
Type dataContainerType;
public DynamicDataSource ()
: this (null)
{
}
public DynamicDataSource (string dataContainerTypeName)
{
this.DataContainerTypeName = dataContainerTypeName;
}
public DataSourceView DefaultView {
get {
if (defaultView == null)
defaultView = CreateView (DEFAULT_VIEW_NAME);
return defaultView;
}
}
public Type DataContainerType {
get {
if (dataContainerType == null)
dataContainerType = Type.GetType (DataContainerTypeName, true);
return dataContainerType;
}
}
public string DataContainerTypeName {
get;
set;
}
public object DataContainerInstance
{
get;
set;
}
DataSourceView CreateView (string viewName)
{
Type genType = typeof (DynamicDataSourceView<>).GetGenericTypeDefinition ();
return Activator.CreateInstance (genType.MakeGenericType (new Type[] { ContextType }), this, viewName) as DataSourceView;
}
#region DataSourceControl Members
protected override DataSourceView GetView (string viewName)
{
if (String.IsNullOrEmpty (viewName))
return DefaultView;
return CreateView (viewName);
}
#endregion
#region IDynamicDataSource Members
public bool AutoGenerateWhereClause
{
get;
set;
}
public Type ContextType
{
get;
set;
}
public bool EnableDelete
{
get;
set;
}
public bool EnableInsert
{
get;
set;
}
public bool EnableUpdate
{
get;
set;
}
public string EntitySetName
{
get;
set;
}
public event EventHandler<DynamicValidatorEventArgs> Exception;
public string Where
{
get;
set;
}
[PersistenceMode (PersistenceMode.InnerProperty)]
public ParameterCollection WhereParameters
{
get
{
if (whereCollection == null)
whereCollection = new ParameterCollection ();
return whereCollection;
}
}
#endregion
#region IDataSource Members
DataSourceView IDataSource.GetView (string viewName)
{
return GetView (viewName);
}
ICollection IDataSource.GetViewNames ()
{
return emptyNames;
}
#endregion
}
}
|