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

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

在 C# 中編寫泛型以返回?cái)?shù)據(jù)類型

在 C# 中編寫泛型以返回?cái)?shù)據(jù)類型

C#
肥皂起泡泡 2022-06-12 14:52:50
需要一些關(guān)于編寫 C# 泛型以從 SQL 數(shù)據(jù)庫(kù)返回?cái)?shù)據(jù)類型的指導(dǎo)。我正在從我的數(shù)據(jù)庫(kù)中讀取數(shù)據(jù)以從“SetKey”中獲取數(shù)據(jù)類型。我可以將它們作為字符串返回,但我希望將它們轉(zhuǎn)換為 int,在下面的這個(gè)特定示例中。這是我到目前為止所擁有的。在我評(píng)論過(guò)的地方遇到了幾個(gè)錯(cuò)誤。我在這方面相當(dāng)新,所以任何輸入或建議將不勝感激。謝謝!
查看完整描述

2 回答

?
元芳怎么了

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

該變量dataTypeModel未在代碼的任何位置聲明。


如果您想以通用方式返回,您應(yīng)該執(zhí)行以下操作:


public DataTypeModel<T> GetDataType<T>(string str) where T : class

    {

        List<DataTypeDomain> dataTypeDomain = new List<DataTypeDomain>();

        _dataProvider.ExecuteCmd(

            "config_select_by_key",

            inputParamMapper: delegate (SqlParameterCollection paramCol)

            {

                paramCol.AddWithValue("@ConfigKey", str);

            },

            singleRecordMapper: delegate (IDataReader reader, short set)

            {

                int i = 0;

                DataTypeModel<int> dataTypeModel = new DataTypeModel<int>();

                string key = string.Format("Key{0}", i);

                DataTypeDomain dtd = dataTypeDomain.Find(x => x.ConfigKey == key);

                dataTypeModel.ConfigKey = dtd.ConfigKey;

                dataTypeModel.ConfigValue = int.Parse(dtd.ConfigValue);

            }

        );

        return new DataTypeModel<T>()

        {

            ConfigKey = "What your key is",

            ConfigValue = dataTypeDomain.First() as T //Supposing that the list only contains one config element , if not, you should change your method return type to a List<DataTypeModel<T>> and return a List doing this for each element.

        };

    }

然后在您的界面中:


public interface IDataTypeService

{

    DataTypeModel<T> GetDataType<T>(string str) where T : class;

}

快速說(shuō)明


當(dāng)您使用泛型時(shí),您應(yīng)該在以下方法上指定 T :


DataTypeModel<T> GetDataType<T>(string str) --> Only use T inside method scope

另一種聲明方式T是在類/接口級(jí)別,例如:


public interface IDataTypeService<T>  --> With this you can use `T` in all of the class/interface

此外,如果你想指定一些T應(yīng)該遵循的約束,你可以這樣做:


where T : class;  --> In our case this allow us to cast the object to T

該代碼未經(jīng)測(cè)試,但我想它應(yīng)該可以工作。


查看完整回答
反對(duì) 回復(fù) 2022-06-12
?
qq_遁去的一_1

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

您不能T在接口定義中保持打開狀態(tài)。你必須關(guān)閉類型

DataTypeModel<SomeType> GetDataType(string str);


查看完整回答
反對(duì) 回復(fù) 2022-06-12
  • 2 回答
  • 0 關(guān)注
  • 350 瀏覽

添加回答

舉報(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)