コード例 #1
0
 public ActionResult Update(Bam.Net.Data.Dynamic.Data.Dao.DynamicTypeDescriptor dao)
 {
     try
     {
         dao.Save();
         return(Json(new { Success = true, Message = "", Dao = dao.ToJsonSafe() }));
     }
     catch (Exception ex)
     {
         return(GetErrorResult(ex));
     }
 }
コード例 #2
0
        private static DynamicTypeDescriptor CreateFromFilter(IQueryFilter filter, Database database = null)
        {
            Database db  = database ?? Db.For <DynamicTypeDescriptor>();
            var      dao = new DynamicTypeDescriptor();

            filter.Parameters.Each(p =>
            {
                dao.Property(p.ColumnName, p.Value);
            });
            dao.Save(db);
            return(dao);
        }
コード例 #3
0
 public ActionResult Delete(long id)
 {
     try
     {
         string msg = "";
         Bam.Net.Data.Dynamic.Data.Dao.DynamicTypeDescriptor dao = Bam.Net.Data.Dynamic.Data.Dao.DynamicTypeDescriptor.OneWhere(c => c.KeyColumn == id);
         if (dao != null)
         {
             dao.Delete();
         }
         else
         {
             msg = string.Format("The specified id ({0}) was not found in the table (DynamicTypeDescriptor)", id);
         }
         return(Json(new { Success = true, Message = msg, Dao = "" }));
     }
     catch (Exception ex)
     {
         return(GetErrorResult(ex));
     }
 }
コード例 #4
0
 public ActionResult Create(Bam.Net.Data.Dynamic.Data.Dao.DynamicTypeDescriptor dao)
 {
     return(Update(dao));
 }