创建和修改日期问题

时间:2017-06-08 08:59:57

标签: asp.net asp.net-mvc

我在ASP.NET MVC 5中练习User.Identity和timestamps函数, 所以我创建了一个填充了一些属性的学生类,我只是想测试它是否正在捕获时间戳和userId,因此用户ID也被捕获并且也是日期时间,问题是每当我编辑一条记录并保存它时,就会创建它日期变为空,修改日期更新,请查看代码和帮助。 提前致谢。 以下是代码

{
public class BaseEntity
{
    public DateTime? DateCreated { get; set; }
    public string UserCreated { get; set; }
    public DateTime? DateModified { get; set; }
    public string UserModified { get; set; }
}


public class Student : BaseEntity
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Subject { get; set; }
    public string Class { get; set; }
    public Section Section { get; set; }
    public byte SectionId { get; set; }
}

然后我使用了Codefirst方法并创建了一个应用程序数据库,并将此代码添加到Identity Model

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
    public DbSet<Student> Students { get; set; }
    public override int SaveChanges()
    {
        AddTimestamps();
        return base.SaveChanges();
    }

    //public override async Task<int> SaveChangesAsync()
    //{
    //    AddTimestamps();
    //    return await base.SaveChangesAsync();
    //}

    private void AddTimestamps()
    {
        var entities = ChangeTracker.Entries().Where(x => x.Entity is BaseEntity && (x.State == EntityState.Added || x.State == EntityState.Modified));

        var currentUsername = !string.IsNullOrEmpty(System.Web.HttpContext.Current?.User?.Identity?.Name)
            ? HttpContext.Current.User.Identity.Name
            : "Anonymous";

        foreach (var entity in entities)
        {
            if (entity.State == EntityState.Added)
            {
                ((BaseEntity)entity.Entity).DateCreated = DateTime.UtcNow;
                ((BaseEntity)entity.Entity).UserCreated = currentUsername;
            }
            else
            ((BaseEntity)entity.Entity).DateModified = DateTime.UtcNow;
            ((BaseEntity)entity.Entity).UserModified = currentUsername;
        }
    }
    public DbSet<Section> Sections { get; set; }    
    public ApplicationDbContext()
        : base("DefaultConnection", throwIfV1Schema: false)
    {
    }

    public static ApplicationDbContext Create()
    {
        return new ApplicationDbContext();
    }
}

我创建了一个带有创建,编辑和调度操作的简单控制器。

1 个答案:

答案 0 :(得分:1)

就我所见,您发布的代码并未将DateCreated设置为null。我认为问题是当您保存现有记录时,您的视图中没有DateCreatedUserCreated字段。因此,当您发布表单时,MVC模型绑定器不会看到它们,因此将它们设置为null(我假设您在控制器操作中绑定了Student模型)。

在编辑视图中添加以下隐藏字段:

@Html.HiddenFor(model => model.DateCreated)
@Html.HiddenFor(model => model.UserCreated)

现在,当您发布表单时,MVC模型绑定器会将这些值绑定到您的模型并将它们保存到数据库中。