DataSet does not support System.Nullable<> exception in c#

后端 未结 5 970
伪装坚强ぢ
伪装坚强ぢ 2021-01-21 01:47
public partial class Form2 : Form
{
        public Form2()
        {
            InitializeComponent();
        }
        private void Form2_Load(object sender, EventArg         


        
5条回答
  •  醉话见心
    2021-01-21 02:31

    Check in your class if you have only one attribute nullable like this : decimal? , put it in decimal. For all of your attributes which have the question mark in there declaration, delete the question mark simply and execute.

提交回复
热议问题