Search results for query: *

  • Users: rammfire
  • Content: Threads
  • Order by date
  1. R

    Resolved Prohibit the creation of an object

    Hello everyone. Let's imagine a situation that I have a class inside which there is a property. The property does not equate the value of a variable if the length of the incoming value is greater than the specified condition. public class Book { string bookDescription = null...
  2. R

    Question Assistance in making a request

    Good afternoon. I need to make a query that outputs the authors of books sorted by the number of books in decreasing order. You only need to output authors whose number of books is greater than the average number of books by authors. A sample of my table, in which I managed to get only the...
  3. R

    Question Help with "MediatR" template implementation

    Hi! I want to master this small library and I have the following question. I have implemented: Domain namespace MediatrDemo.Domain { public class Client { public int ID { get; set; } public string Name { get; set; } public string OtherInfo { get; set; } } }...
  4. R

    Incorrect display of data

    I have a class that describes the level of subordination of departments: public class SeniorPosition : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private string managementPositionName; private string...
  5. R

    Resolved Help with a logical programming task

    Hi. I need your help with a small logic problem. The essence of the task: There are numbers from 1 to N, N = 50, you need to divide the numbers into several groups so if one number is divided by another, then these numbers fall into different groups. The result of this partition is M groups...
Back
Top Bottom