本文整理汇总了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);
}
示例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);
}
示例3: InsertDictionary
private static object InsertDictionary(InvokeMemberBinder binder, object[] args, DataStrategy dataStrategy, string tableName)
{
return dataStrategy.Insert(tableName, binder.NamedArgumentsToDictionary(args), !binder.IsResultDiscarded());
}
示例4: InsertDictionary
private static IDictionary<string, object> InsertDictionary(InvokeMemberBinder binder, object[] args, DataStrategy dataStrategy, string tableName)
{
return dataStrategy.Insert(tableName, binder.NamedArgumentsToDictionary(args));
}