DataSet does not support System.Nullable<> in Export

前端 未结 4 826
暖寄归人
暖寄归人 2021-01-31 01:34

I was trying to generate a Report using Export to Excell, PDF, TextFile. Well I am doing this in MVC. I have a class which I named SPBatch (which is the exact name of my Stored

4条回答
  •  盖世英雄少女心
    2021-01-31 02:19

    Thanks to a C# version of a generating a datatable and some hacking around, I can offer this answer in VB - I put it on here because I've just had a lot of hassle wanting to get a filterable dataset from a stored proc whilst using a simple datalayer. I hope it helps someone else!

    Note: The use case is where you wish to use BindingSource.Filter = "some query string":

    Imports System.Reflection
    
    Public Module Extenders
    
    Public Function ToDataTable(Of T)(collection As IEnumerable(Of T), tableName As String) As DataTable
        Dim tbl As DataTable = ToDataTable(collection)
        tbl.TableName = tableName
        Return tbl
    End Function
    
    
    Public Function ToDataTable(Of T)(collection As IEnumerable(Of T)) As DataTable
        Dim dt As New DataTable()
    
        Dim tt As Type = GetType(T)
        Dim pia As PropertyInfo() = tt.GetProperties()
    
        'Create the columns in the DataTable
    
        For Each pi As PropertyInfo In pia
            Dim a = 
    If(Nullable.GetUnderlyingType(pi.PropertyType), pi.PropertyType)
            dt.Columns.Add(pi.Name, If(Nullable.GetUnderlyingType(pi.PropertyType), pi.PropertyType))
        Next
    
        'Populate the table
    
        For Each item As T In collection
            Dim dr As DataRow = dt.NewRow()
            dr.BeginEdit()
    
            For Each pi As PropertyInfo In pia
    
                dr(pi.Name) = If(Nullable.GetUnderlyingType(pi.PropertyType) Is GetType(DateTime), DBNull.Value, pi.GetValue(item, Nothing))
            Next
            dr.EndEdit()
            dt.Rows.Add(dr)
        Next
        Return dt
    End Function
    
    End Module
    

提交回复
热议问题