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


C# DataStrategy.Insert方法代码示例

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


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

示例1: InsertEntity

        private static object InsertEntity(object entity, DataStrategy dataStrategy, string tableName)
        {
            var dictionary = entity as IDictionary<string, object>;
            if (dictionary != null)
                return dataStrategy.Insert(tableName, dictionary);

            var list = entity as IEnumerable<IDictionary<string, object>>;
            if (list != null)
                return dataStrategy.Insert(tableName, list);

            var entityList = entity as IEnumerable;
            if (entityList != null)
            {
                var array = entityList.Cast<object>().ToArray();
                var rows = new List<IDictionary<string, object>>();
                foreach (var o in array)
                {
                    dictionary = (o as IDictionary<string, object>) ?? o.ObjectToDictionary();
                    if (dictionary.Count == 0)
                    {
                        throw new SimpleDataException("Could not discover data in object.");
                    }
                    rows.Add(dictionary);
                }

                return dataStrategy.Insert(tableName, rows);
            }

            dictionary = entity.ObjectToDictionary();
            if (dictionary.Count == 0)
                throw new SimpleDataException("Could not discover data in object.");
            return dataStrategy.Insert(tableName, dictionary);
        }
开发者ID:darrencauthon,项目名称:Simple.Data,代码行数:33,代码来源:InsertCommand.cs

示例2: InsertEntity

 private static IDictionary<string,object> InsertEntity(object entity, DataStrategy dataStrategy, string tableName)
 {
     var dictionary = entity as IDictionary<string, object>;
     if (dictionary == null)
     {
         dictionary = ObjectEx.ObjectToDictionary(entity);
         if (dictionary.Count == 0)
             throw new SimpleDataException("Could not discover data in object.");
     }
     return dataStrategy.Insert(tableName, dictionary);
 }
开发者ID:robashton,项目名称:Simple.Data,代码行数:11,代码来源:InsertCommand.cs

示例3: InsertDictionary

 private static object InsertDictionary(InvokeMemberBinder binder, object[] args, DataStrategy dataStrategy, string tableName)
 {
     return dataStrategy.Insert(tableName, binder.NamedArgumentsToDictionary(args), !binder.IsResultDiscarded());
 }
开发者ID:hlach,项目名称:Simple.Data,代码行数:4,代码来源:InsertCommand.cs

示例4: InsertDictionary

 private static IDictionary<string, object> InsertDictionary(InvokeMemberBinder binder, object[] args, DataStrategy dataStrategy, string tableName)
 {
     return dataStrategy.Insert(tableName, binder.NamedArgumentsToDictionary(args));
 }
开发者ID:robashton,项目名称:Simple.Data,代码行数:4,代码来源:InsertCommand.cs


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