私はC#が初めてで、間違っているところはどこでも修正してください
。Nullableプロパティを持つクラスを作成しようとしていますが、クラスのビルドでエラーが発生します
public class vwAcdAdmissionWithvwAcdAdmissionSessionDetailWithAllMaster1
{
public Nullable<string> Name { get; set; }
public Nullable<string> StudentNameWithLedgerName { get; set; }
public Nullable<decimal> AASDid { get; set; }
public Nullable<decimal> StudentLedgerId { get; set; }
public Nullable<string> LedgerName { get; set; }
public Nullable<decimal> SessionId { get; set; }
public Nullable<string> ScholarNo { get; set; }
public Nullable<decimal> ClassId { get; set; }
public Nullable<decimal> SectionId { get; set; }
public Nullable<decimal> MediumId { get; set; }
public Nullable<decimal> StreamId { get; set; }
public Nullable<decimal> HouseId { get; set; }
public Nullable<decimal> FeeCategoryId { get; set; }
public Nullable<decimal> SchemeId { get; set; }
public Nullable<decimal> RollNo { get; set; }
public Nullable<decimal> SchoolId { get; set; }
public Nullable<decimal> UserId { get; set; }
public Nullable<decimal> ShiftId { get; set; }
public Nullable<string> StreamName { get; set; }
public Nullable<string> ClassName { get; set; }
public Nullable<string> HouseName { get; set; }
public Nullable<string> SectionName { get; set; }
public Nullable<string> ShiftName { get; set; }
public Nullable<string> MediumName { get; set; }
public Nullable<string> FeeCategoryName { get; set; }
public Nullable<string> DiscountType { get; set; }
public Nullable<decimal> Discount { get; set; }
}
エラーはエラーです
。意味がわかりませんでした。今できることを教えて
ください。貴重なフィードバックをありがとう
The type 'string' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method 'System.Nullable<T>'
文字列をヌル可能にしたい理由は、前回の投稿と同様です。
最後の投稿
は、ヌル不可の文字列を返すとエラーになります