Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 896057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:39:56+00:00 2026-05-15T14:39:56+00:00

I have a class with these properties: public List<CommitmentItem<ITransaction, ITransactionItem>> CommitmentItems; public List<CapitalCallCommitmentItem> CapitalCallCommitmentItems;

  • 0

I have a class with these properties:

public List<CommitmentItem<ITransaction, ITransactionItem>> CommitmentItems;
public List<CapitalCallCommitmentItem> CapitalCallCommitmentItems;

CapitalCallCommitmentItem inherits CommitmentItem. I want the CapitalCallCommitmentItems property to return all CommitmentItems where the type is of CapitalCallCommitmentItem. So I tried this code:

get
{                
    return CommitmentItems
        .Where(c => c.GetType() == typeof(CapitalCallCommitmentItem))
        .Select(c => (CapitalCallCommitmentItem)c)
        .ToList();
}

However, I get an error saying:

Error 1 Cannot convert type ‘Models.CommitmentItem’ to ‘Models.CapitalCallCommitmentItem’

What’s the right way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T14:39:57+00:00Added an answer on May 15, 2026 at 2:39 pm

    Use the OfType extension method.

    return CommitmentItems.OfType<CapitalCallCommitmentItem>().ToList();
    

    In your code, although you’re filtering on the subtype in the where clause, it is still going to return the general type of the list. OfType will return an enumerable of the provided type.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have public class ViewModel1 { // some properties here public List<ViewModel2> ViewModel2 {get;
Suppose we have these business objects with some properties in common: public class A
Let's say I have these class hierarchy : public abstract class Parent { }
I want to give access to protected properties to another class. I have been
I have a class with a struct in it and a list with these
I have 2 properties in ViewModel class, EmployeeList and Employee. EmployeeList is dynamic property,
If you have a customer class with 85 properties and you assign each property
let's have these classes: public class MyObject { //constructor and other stuff public bool
I want to create a list of type class which has properties which I
I have a class that contains some properties, consisting of lists. These lists can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.