本文整理汇总了C#中FluentNHibernate.MappingModel.PropertyMapping.AddDefaultColumn方法的典型用法代码示例。如果您正苦于以下问题:C# PropertyMapping.AddDefaultColumn方法的具体用法?C# PropertyMapping.AddDefaultColumn怎么用?C# PropertyMapping.AddDefaultColumn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FluentNHibernate.MappingModel.PropertyMapping
的用法示例。
在下文中一共展示了PropertyMapping.AddDefaultColumn方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetPropertyMapping
private PropertyMapping GetPropertyMapping(Type type, Member property)
{
var mapping = new PropertyMapping
{
ContainingEntityType = type,
Member = property
};
mapping.AddDefaultColumn(new ColumnMapping { Name = property.Name });
if (!mapping.IsSpecified("Name"))
mapping.Name = mapping.Member.Name;
if (!mapping.IsSpecified("Type"))
mapping.SetDefaultValue("Type", GetDefaultType(property));
return mapping;
}
示例2: GetPropertyMapping
private PropertyMapping GetPropertyMapping(Type type, PropertyInfo property, ComponentMapping component)
{
var mapping = new PropertyMapping
{
ContainingEntityType = type,
PropertyInfo = property
};
var columnName = property.Name;
if (component != null)
columnName = expressions.GetComponentColumnPrefix(component.PropertyInfo) + columnName;
mapping.AddDefaultColumn(new ColumnMapping { Name = columnName });
if (!mapping.IsSpecified(x => x.Name))
mapping.Name = mapping.PropertyInfo.Name;
if (!mapping.IsSpecified(x => x.Type))
mapping.SetDefaultValue(x => x.Type, new TypeReference(mapping.PropertyInfo.PropertyType));
return mapping;
}
示例3: property_with_column
protected PropertyMapping property_with_column(string column)
{
var property = new PropertyMapping();
property.AddDefaultColumn(new ColumnMapping { Name = "propertyColumn" });
return property;
}
示例4: GetPropertyMapping
private PropertyMapping GetPropertyMapping(Type type, Member property, ComponentMapping component)
{
var mapping = new PropertyMapping
{
ContainingEntityType = type,
Member = property
};
var columnName = property.Name;
if (component != null)
columnName = cfg.GetComponentColumnPrefix(component.Member) + columnName;
mapping.AddDefaultColumn(new ColumnMapping { Name = columnName });
if (!mapping.IsSpecified("Name"))
mapping.Name = mapping.Member.Name;
if (!mapping.IsSpecified("Type"))
mapping.SetDefaultValue("Type", GetDefaultType(property));
return mapping;
}