2 overrides of IsNullable
System.Data.Linq (2)
Mapping\AttributedMetaModel.cs (1)
1404public override bool IsNullable {
Mapping\MappedMetaModel.cs (1)
1307public override bool IsNullable {
4 references to IsNullable
System.Data.Linq (3)
ChangeTracker.cs (2)
314if (assoc.DeleteOnNull && assoc.IsForeignKey && !assoc.IsNullable && !assoc.IsMany && 585else if (assoc.IsNullable) {
SqlClient\Query\SqlBinder.cs (1)
1372SqlJoinType joinType = (link.Member.Association.IsForeignKey && !link.Member.Association.IsNullable)
System.Web.DynamicData (1)
DynamicData\ModelProviders\DLinqColumnProvider.cs (1)
28Nullable = Member.IsAssociation ? Member.Association.IsNullable : Member.CanBeNull;