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,33 @@
|
||||
namespace System.Web.DynamicData.ModelProviders {
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Web.Resources;
|
||||
|
||||
internal sealed class SimpleColumnProvider : ColumnProvider {
|
||||
public SimpleColumnProvider(TableProvider tableProvider, PropertyDescriptor propertyDescriptor)
|
||||
: base(tableProvider) {
|
||||
if (propertyDescriptor.PropertyType == null) {
|
||||
throw new ArgumentNullException(DynamicDataResources.SimpleColumnProvider_ColumnTypeRequired);
|
||||
}
|
||||
Name = propertyDescriptor.Name;
|
||||
ColumnType = propertyDescriptor.PropertyType;
|
||||
IsPrimaryKey = propertyDescriptor.Attributes.OfType<KeyAttribute>().Any();
|
||||
Nullable = Misc.TypeAllowsNull(ColumnType);
|
||||
IsReadOnly = propertyDescriptor.IsReadOnly;
|
||||
IsSortable = true;
|
||||
}
|
||||
|
||||
public override AttributeCollection Attributes {
|
||||
get {
|
||||
if (!System.Web.UI.DataBinder.IsBindableType(ColumnType)) {
|
||||
return AttributeCollection.FromExisting(base.Attributes, new ScaffoldColumnAttribute(false));
|
||||
}
|
||||
return base.Attributes;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user