当前位置: 首页>>代码示例>>C#>>正文


C# Table.GetOrCreateIndex方法代码示例

本文整理汇总了C#中NHibernate.Mapping.Table.GetOrCreateIndex方法的典型用法代码示例。如果您正苦于以下问题:C# Table.GetOrCreateIndex方法的具体用法?C# Table.GetOrCreateIndex怎么用?C# Table.GetOrCreateIndex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在NHibernate.Mapping.Table的用法示例。


在下文中一共展示了Table.GetOrCreateIndex方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CreateIndex

        protected void CreateIndex(Table table, IEnumerable<Column> columns)
        {
            string indexName = string.Format("IX_{0}{1}", table.Name,
                StringUtilities.Combine(columns, "", delegate(Column c) { return c.Name; }));

            CollectionUtils.ForEach(columns,
                delegate(Column c) { table.GetOrCreateIndex(indexName).AddColumn(c); });
        }
开发者ID:nhannd,项目名称:Xian,代码行数:8,代码来源:IndexCreatorBase.cs

示例2: BindIndex

		private static void BindIndex(string indexAttribute, Table table, Column column)
		{
			if (indexAttribute != null && table != null)
			{
				var tokens = indexAttribute.Split(',');
				System.Array.ForEach(tokens, t => table.GetOrCreateIndex(t.Trim()).AddColumn(column));
			}
		}
开发者ID:jlevitt,项目名称:nhibernate-core,代码行数:8,代码来源:ColumnsBinder.cs

示例3: BindIndex

 protected static void BindIndex(XmlAttribute indexAttribute, Table table, Column column)
 {
     if (indexAttribute != null && table != null)
     {
         StringTokenizer tokens = new StringTokenizer(indexAttribute.Value, ", ");
         foreach (string token in tokens)
             table.GetOrCreateIndex(token).AddColumn(column);
     }
 }
开发者ID:aistrate,项目名称:TypingPracticeTexts,代码行数:9,代码来源:ClassBinder.cs

示例4: BindIndex

		protected static void BindIndex(string indexAttribute, Table table, Column column)
		{
			if (indexAttribute != null && table != null)
			{
				var tokens = new StringTokenizer(indexAttribute, ",", false);
				foreach (string token in tokens)
					table.GetOrCreateIndex(token.Trim()).AddColumn(column);
			}
		}
开发者ID:nkmajeti,项目名称:nhibernate,代码行数:9,代码来源:ClassBinder.cs


注:本文中的NHibernate.Mapping.Table.GetOrCreateIndex方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。