CSVHelper with ASP.NET MVC 3

本文关键字:MVC NET ASP with CSVHelper | 更新日期: 2023-09-27 18:37:26

我正在尝试上传一个csv文件并使用MVC3实现CSVHelper能力。

https://github.com/JoshClose/CsvHelper

我还没有找到将其用于文件上传的示例。 基本上,我需要获取CSV文件并映射到实体对象并保存到数据库。 以下是我的实体:

public class SurveyEmailListModels
    {
        [Key]
        public int SurveyEmailListId { get; set; }
        [CsvField(Index = 0)]
        public int ProgramId { get; set; }
        [CsvField(Index = 1)]
        public virtual SurveyProgramModels SurveyProgramModels { get; set; }
        [CsvField(Index = 2)]
        public string SurveyEmailAddress { get; set; }
        [CsvField(Index = 3)]
        public bool SurveyResponded { get; set; }
    }

上传处理程序:

 [HttpPost]
        public ActionResult Upload(HttpPostedFileBase file, SurveyEmailListModels surveyemaillistmodels, int id)
        {
            if (file != null && file.ContentLength > 0)
            {

                // Collect file and place into directory for source file download
                var appData = Server.MapPath("~/csv/");
                var filename = Path.Combine(appData, Path.GetFileName(file.FileName));
                file.SaveAs(filename);

             //   surveyemaillistmodels.SurveyEmailAddress = "test@test.com";
             //   surveyemaillistmodels.SurveyResponded = true;
              //  surveyemaillistmodels.ProgramId = id;

                db.SurveyEmailListModels.Add(surveyemaillistmodels);
                db.SaveChanges();
                return Content(filename);
            }
            return Json(true);
        }

我不确定如何遍历 CSV 文件并保存到数据库。 有人有例子吗?

CSVHelper with ASP.NET MVC 3

我建议您为此目的使用自定义模型绑定器,以避免使用 CSV 解析代码混淆控制器逻辑:

public class SurveyEmailListModelsModelBinder: DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var csv = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
        var file = ((csv.RawValue as HttpPostedFileBase[]) ?? Enumerable.Empty<HttpPostedFileBase>()).FirstOrDefault();
        if (file == null || file.ContentLength < 1)
        {
            bindingContext.ModelState.AddModelError(
                "", 
                "Please select a valid CSV file"
            );
            return null;
        }
        using (var reader = new StreamReader(file.InputStream))
        using (var csvReader = new CsvReader(reader))
        {
            return csvReader.GetRecords<SurveyEmailListModels>().ToArray();
        }
    }
}

将在Application_Start注册:

ModelBinders.Binders.Add(
    typeof(SurveyEmailListModels[]), 
    new SurveyEmailListModelsModelBinder()
);

现在我们可以有一个控制器:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }
    [HttpPost]
    public ActionResult Index(SurveyEmailListModels[] model)
    {
        if (!ModelState.IsValid)
        {
            return View();
        }
        ... store the model into the database 
        return Content("Thanks for uploading");
    }
}

和视图:

@Html.ValidationSummary()
@using (Html.BeginForm(null, null, FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    <input type="file" name="model" />
    <button type="submit">OK</button>
}