第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用泛型和接口的 Linq 查詢

使用泛型和接口的 Linq 查詢

C#
炎炎設(shè)計(jì) 2023-09-16 16:19:51
我有幾個(gè)實(shí)現(xiàn)以下 IInactive 接口的實(shí)體框架類。public interface IInactive{    bool inactive { get; set; }}例如我的Order類定義如下:public class Order : IInactive{    [Key]    [Required]    public Guid orderId { get; set; }    ...    public bool inactive { get; set; }} 我正在嘗試實(shí)現(xiàn)一個(gè)通用方法,該方法可用于所有對(duì)象(實(shí)體),無(wú)論它們是否實(shí)現(xiàn) IInactive 接口。它將被稱為如下:var query = GetAllActive<Order>();我的這個(gè)通用方法的代碼如下所示:public IQueryable<T> GetAllActive<T>() where T : class{    DbSet<T> dbSet = this._db.Set<T>();    // Does the entity implement the IInactive interface.    // If yes, only return "active" row, otherwise return all rows    if (typeof(T)is IInactive)    {        // Problem: the code in this block never executes, that is,        // (typeof(T)is IInactive) never evaluates to true       ...    }    return dbSet;}我非常感謝您幫助解決這個(gè)問(wèn)題!謝謝。
查看完整描述

1 回答

?
慕運(yùn)維8079593

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊

代替

if (typeof(T) is IInactive)

嘗試

if (typeof(IInactive).IsAssignableFrom(typeof(T)))


查看完整回答
反對(duì) 回復(fù) 2023-09-16
  • 1 回答
  • 0 關(guān)注
  • 100 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)