Master the Design of Functional Types in C#

  Рет қаралды 10,275

Zoran Horvat

Zoran Horvat

22 күн бұрын

Check out Dometrain and use code ZORAN for 15% off any course ► dometrain.com/?coupon_code=ZORAN
The 1980s are over. The new C# does not work well with old habits. Get rid of them and dive into modern-day programming.
The road to learning begins with understanding why C# becomes progressively more functional with every new version. Yet, most C# programmers do not know what is functional there or how to use it correctly.
This video explains the fundamental techniques of designing functional types in C#. Learn how to utilize the rich syntactic support for functional types in the modern C# and benefit from the novel design methods.
A word of caution: Anyone attempting to benefit in an object-oriented way from the new functional C# syntax will only find frustration and misery. Open your mind and embark on this journey!
Download source code ► / zoranhorvat
Join Discord server with topics on C# ► codinghelmet.com/go/discord
Enroll course Beginning Object-Oriented Programming with C# ► codinghelmet.com/go/beginning...
Subscribe ► / @zoran-horvat
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
👨 About Me 👨
Hi, I’m Zoran, I have more than 20 years of experience as a software developer, architect, team lead, and more. I have been programming in C# since its inception in the early 2000s. Since 2017 I have started publishing professional video courses at Pluralsight and Udemy and by this point, there are over 100 hours of the highest-quality videos you can watch on those platforms. On my KZbin channel, you can find shorter video forms focused on clarifying practical issues in coding, design, and architecture of .NET applications.❤️
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
⚡️COPYRIGHT NOTICE:
The Copyright Laws of the United States recognize a “fair use” of copyrighted content. Section 107 of the U.S. Copyright Act states: “Notwithstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work, including such use by reproduction in copies or phono records or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright." This video and our youtube channel, in general, may contain certain copyrighted works that were not specifically authorized to be used by the copyright holder(s), but which we believe in good faith are protected by federal law and the Fair use doctrine for one or more of the reasons noted above.
#csharp #dotnet #functionalprogramming

Пікірлер: 92
@zoran-horvat
@zoran-horvat 22 күн бұрын
Check out Dometrain and use code ZORAN for 15% off any course ► dometrain.com/?coupon_code=ZORAN Download source code ► www.patreon.com/zoranhorvat Join Discord server with topics on C# ► codinghelmet.com/go/discord Enroll course *Beginning Object-Oriented Programming with C#* ► codinghelmet.com/go/beginning-oop-with-csharp Subscribe ► kzbin.info/door/xsWfh8LCcn55mFB6zGBT1g
@HalilIbrahim-kn2dl
@HalilIbrahim-kn2dl 17 күн бұрын
So many ideas fell into place while watching this. thank you.
@bbrainstormer2036
@bbrainstormer2036 20 күн бұрын
Just give me my dang tagged unions already
@zoran-horvat
@zoran-horvat 20 күн бұрын
I'm with you!
@kabal911
@kabal911 20 күн бұрын
One day 🙏
@jetloong1582
@jetloong1582 20 күн бұрын
Thanks for the video. Especially the naming for types helped me since I encountered the feeling that when I code in functional way, my functions seem "not in right spot" or "not highlighted enough". Functions are in this case more important to me since they hold logic while types simply hold data. Thank you very much.
@kabal911
@kabal911 20 күн бұрын
Cool video. Functional concepts like bind are nice. IMO things like ErrorOr are the simplest way to implement sane functional programming in C#. Procedural functional programming if you will Async/await is basically a monad 🤷‍♂️
@PaulVanBladel
@PaulVanBladel 21 күн бұрын
Task is the most prominent Monad in c#, right?
@zoran-horvat
@zoran-horvat 21 күн бұрын
Right. The other most prominent one is IEnumerable.
@mendeleev_9H2PDsgXu7NmphCUEH
@mendeleev_9H2PDsgXu7NmphCUEH 20 күн бұрын
guys stoooop
@amsalamander7521
@amsalamander7521 20 күн бұрын
Actively trying to learn pure functional approach by learning Haskell, this video is quite useful for me, I can see an example of this style in familiar language to reach more understanding. Thank you.
@YukonianOrangutangInSpace
@YukonianOrangutangInSpace 20 күн бұрын
Thank you, my understanding of the difference between OOP and functional was way off before your video.
@fsharpfan
@fsharpfan 20 күн бұрын
In F# I regularly have same name for type and module: type Book, module Book, because F# does not have restriction that C# has.
@zoran-horvat
@zoran-horvat 20 күн бұрын
Yes, in C# both are just classes.
@websystema
@websystema 5 күн бұрын
Thanks for the video
@martingrof1685
@martingrof1685 20 күн бұрын
Excellent video, you are top-tier.
@francoberaldi4028
@francoberaldi4028 18 күн бұрын
If you had to model different types of xml nodes with different rules and linq XElement is not enough, would you go the functional route? Most nodes types would be known and not change in the future. And what about text inside those nodes? Im thinking about modelling to the smallest bit, like an object Character that has an index, a start column and end column (imagine that you can place the cursor before or after).
@nicknelson1975
@nicknelson1975 10 күн бұрын
I think Functional is orthogonal to your question! If you need a custom type for a node, that's fine. If you want to model the behavior in the class, then go OOP. If you want to model the behavior in extensions, separate from the state - go functional!
@MC_DarkMaster
@MC_DarkMaster 14 күн бұрын
Hi. Do you have a video or example code about the Either-Monad?
@zoran-horvat
@zoran-horvat 14 күн бұрын
I will get to that soon. In the meantime, I have an explanation of Either in my Pluralsight course on functional programming with C#.
@jonnroc
@jonnroc 21 күн бұрын
I like the Option monad, but I absolutely love the Result monad (because it can provide information about the outcomes of operations). Hey....perhaps you can do a vid on defining extension methods of `Select` and `SelectMany` so that one can use your Option type with the so-called 'query syntax'??
@kabal911
@kabal911 20 күн бұрын
Option monad is great. The best implementation IMO is ErrorOr. It's not Result in the strictest sense, but it gives a great failure path, and is really easy for most developers to understand
@MahmoudSaed98
@MahmoudSaed98 21 күн бұрын
Very great explanation Do you have a SOLID or Design Pattern course?
@zoran-horvat
@zoran-horvat 21 күн бұрын
I have several courses on design patterns on Pluralsight and Udemy. Not on SOLID.
@MahmoudSaed98
@MahmoudSaed98 21 күн бұрын
@@zoran-horvat I'm so excited to watch it all. I'll do it Thank you very much
@TheJessejunior
@TheJessejunior 21 күн бұрын
I don't understand, the variants are internal but they can be freely accessed in the same project, may be that was kind of and abstract example?
@zoran-horvat
@zoran-horvat 20 күн бұрын
That is only true as long as they are in the same assembly. If I moved the Models namespace into a separate assembly, which I would certainly do as the model grows large, then all code that references the internal members would fail to build.
@David-id6jw
@David-id6jw 20 күн бұрын
While I appreciate how you've gone about it, I find the Book vs BookType confusing. If all Book is doing is providing static creation methods, why does it have to be a separate class (and thus the segue into how to name it), rather than just part of the record class? Is it to avoid the temptation of directly calling new Book()?
@zoran-horvat
@zoran-horvat 20 күн бұрын
The reason is that it will not be all the book does. The next step from here is to start defining behavior, and we do that in the form of functions defined separately from the data type. The greatest benefit from functional programming is that, unlike in OOP, different portions of behavior are defined in different packages.
@thomasschroter3802
@thomasschroter3802 5 күн бұрын
@@zoran-horvat But it is perfectly fine to declare static functions in the (abstract) super type. Thus, the naming theme "***Type" becomes superfluous.
@zoran-horvat
@zoran-horvat 5 күн бұрын
@@thomasschroter3802 Yes, but that goes against the general idea that those functions can also be defined in another module or namespace. Why make a special cade of some functions, but treat others regularly?
@phyberoptyk5619
@phyberoptyk5619 21 күн бұрын
Thanks Zoran! I guess SelectMany could be one of the monads you're referring to?
@keenkidash7616
@keenkidash7616 21 күн бұрын
More likely the IEnumerable... Deferred execution (or lazy enumeration) of LINQ + IEnumerable is how monads also work. You declare the HOW without actually performing any operation, yet; only declarations. Once all set, you can unwrap the monad (or enumerate the enumerable), where each operation declared will be now performed.
@Robert-yw5ms
@Robert-yw5ms 21 күн бұрын
@@keenkidash7616 I don't believe deferred execution is necessary for a monad definition. It's just a nice feature (or footgun) that functional libraries tend to have.
@zoran-horvat
@zoran-horvat 20 күн бұрын
@@Robert-yw5ms A monad requires a factory which elevates a regular value into a monad, and the Bind function, plus a few other rules known as the monad laws.
@Robert-yw5ms
@Robert-yw5ms 20 күн бұрын
@@zoran-horvat Exactly. A nice example is the javascript array ever since they introduced flatMap. No deferred execution there
@jaiderariza1292
@jaiderariza1292 20 күн бұрын
CreateMany() code in 10:27 seems very strict, I will prefer it like if All are null then return null, else return only the one are not null. so if authors are ["a", "b", null, "c"] => will return ["a", "b", "c"] instead of null.
@zoran-horvat
@zoran-horvat 20 күн бұрын
If you considered the idea of a smart constructor, you would see that it doesn't make much sense to request _all_ contained objects to fail before failing. What you are describing is the Bind function on IEnumerable. It is useful, but in different conditions.
@h.j.m4013
@h.j.m4013 21 күн бұрын
I always have a hard time knowing when to use this. When using c# why not keep using OOP. Why do i go functional, and when do i use it?
@sashbot9707
@sashbot9707 21 күн бұрын
When you work on data with many (100 or more) rules. In parts of web backends not uncommon for example. You can do it with with oop but it is easier to read in functional stile.
@zoran-horvat
@zoran-horvat 21 күн бұрын
Any model where the data model is known and never (or rarely) changes, but behavior grows every day, will likely be a good candidate for functional modeling. Doing the same work in an OO model would require several times longer code and will cause enormous issues. Funny enough, that is a common situation in business operations and connected services today.
@kabal911
@kabal911 20 күн бұрын
Use both Use extension classes to create functionality. Use objects/classes for data. This mental model is easy to understand: data goes into a function, and comes out in a different shape
@AlexUkrop
@AlexUkrop 20 күн бұрын
Love functional programming and Zoran is guru in it. Who would like to dive deeply I recommend listening his Functional Programming lectures on Pluralsight
@WDGKuurama
@WDGKuurama 21 күн бұрын
Why did you check string name for null but haven't done string? firstName in the function parameterz. Just forgot '?' ? (My ide would say it's always false)
@zoran-horvat
@zoran-horvat 21 күн бұрын
That was just a line to show the exception in action and then to delete it. However, if the factory function was supposed to be called from the outside, then non-nullable references can still be set to null and you would have to guard.
@DavidSmith-ef4eh
@DavidSmith-ef4eh 20 күн бұрын
I don't see the benefit of functional programing. Where do you put the breakpoints in those shiny onliner flatMap functions? Also, besidedes saving vertical screen space, what other benefits do I get from fucntiononal programming.. (Hard mode: no use of "mutability", "pure", "side-effects" words)
@zoran-horvat
@zoran-horvat 20 күн бұрын
What breakpoints? Do you really develop software using breakpoints?
@DavidSmith-ef4eh
@DavidSmith-ef4eh 20 күн бұрын
@@zoran-horvat unit tests, and breakpoints.. nothing against some functional programming stuff, like pattern matching. but going all in, seems a bit overkill. specially since my brain is used to oop, using guards, throwning exception for early exit. basically I bought the Uncle Bob memes.
@DavidSmith-ef4eh
@DavidSmith-ef4eh 20 күн бұрын
btw, are you from croatia? zakon da sunarodnjak radi tako dobre tutoriale, svaka cast.
@zoran-horvat
@zoran-horvat 19 күн бұрын
@@DavidSmith-ef4eh Zapravo sam iz Beograda, mada imam rodbinu u Vinkovcima i okolini a prezime vučem iz Slavonske Požege 18. vek otprilike.
@DavidSmith-ef4eh
@DavidSmith-ef4eh 19 күн бұрын
@@zoran-horvat svejedno, svaka cast na dobrom kanalu. jedan od boljih opcenito, tek danas slucajno naletio na to... ali vidi se kvaliteta i sadrzaja i produkcije.
@mollybjork5499
@mollybjork5499 21 күн бұрын
Is it Nullable? :)
@zoran-horvat
@zoran-horvat 21 күн бұрын
No, it is a regular reference type that can be null. The Nullable generic struct is only used on value types.
@redcrafterlppa303
@redcrafterlppa303 21 күн бұрын
Overall I think the state of functional programming in java to be superior to c#. Especially 14:20 java supports closed hierarchies enabling exhaustive type pattern matching. I also think it's overcomplicated to hide the varients and create a match function. The sum type NameType with its varients FullNameType and MononymType can do these things with 1st class c# features (switch expressions) in the user code. Also separating the static code from the type is unnecessary and confusing. Just put the factory functions inside the record. This way you save yourself from the naming dilemma as well.
@zoran-horvat
@zoran-horvat 21 күн бұрын
C# switch expressions are still cumbersome with no exhaustive checking. They must always include a throw instruction, which makes every screen if code look ugly. Once we get that feature, I guess I will stop favoring the Match method.
@rafazieba9982
@rafazieba9982 21 күн бұрын
You can never guarantee that no one will ever extend your abstract class. It can be done in other assemblies. Sometimes even if the type is internal. If you skip the default switch case C# will add it for you. Try and test.
@redcrafterlppa303
@redcrafterlppa303 21 күн бұрын
@@rafazieba9982 I am talking about the fact that java has a compile time and runtime mechanism to prevent unallowed inheritance. The syntax is somewhat confusing from a c# perspective as it uses the sealed keyword which means something different in c# and java.
@rafazieba9982
@rafazieba9982 20 күн бұрын
@@redcrafterlppa303 I don't know of any Java syntax that allows those two classes to inherit but nothing else.
@redcrafterlppa303
@redcrafterlppa303 20 күн бұрын
@@rafazieba9982 public sealed class Super permits Sub1, Sub2 {} final class Sub1 extends Super {} final class Sub2 extends Super {} Super foo = new Sub2(); switch (foo) { case Sub1 s1 -> {} case Sub2 s2 -> {} //no default (exhaustive) }
@10199able
@10199able 21 күн бұрын
I think LINQ SelectMany is kind of monad?
@zoran-horvat
@zoran-horvat 21 күн бұрын
IEnumerable with SelectMany and a creation function (e g. ToList) is the monad.
@Robert-yw5ms
@Robert-yw5ms 21 күн бұрын
​@@zoran-horvat I don't see what ToList has to do with IEnumerable being a monad. You say 'creation function' so I think you must be talking about the unit needed for a monad (since that's how you create a monad from a value), but ToList doesn't serve as a unit in any sense.
@zoran-horvat
@zoran-horvat 20 күн бұрын
@@Robert-yw5ms It does serve as Unit, because it supports wrapping a single object into an object implementing IEnumerable. Other example is the array literal, which is also constructing IEnumerable.
@Robert-yw5ms
@Robert-yw5ms 20 күн бұрын
@zoran-horvat I just wanna make sure: we are talking about the Linq method that turns an ienumerable into a list right? Because if so it fails to be a unit because it doesn't transform objects of type T into IEnumerable T. Also I accidentally responded in the wrong thread earlier so sorry that this will show up twice in your inbox
@zoran-horvat
@zoran-horvat 20 күн бұрын
@@Robert-yw5ms Aaargh you are right - I wanted to say new List, which supports the initializer syntax, not ToList. I wrote 100 comments today, please understand me :)
@martins.8349
@martins.8349 21 күн бұрын
doesnt that mean if someone creates a nametype the printable doesnt work anymore
@zoran-horvat
@zoran-horvat 21 күн бұрын
I'm not sure I understand the question.
@andrewshirley9240
@andrewshirley9240 21 күн бұрын
Yes, this means if someone creates a new type of name and attempts to use it, there's some broken down-stream effect because the logic doesn't know how to process it. Creating a new type will mean tracking down all strategy patterns that switch on the type and updating them. People will say "just have unit tests!," but I think that's insufficient, it makes me kind of dislike this approach unless used very sparingly.
@unexpectedkAs
@unexpectedkAs 20 күн бұрын
As Zoran said, C# doesn't have the tools to do exhaustive pattern matching. There are a number of libraries doing it. The goal is that if you add a new type, then the projects using pattern matching on that type will not compile, and the error will tell you that you are missing a type.
@zoran-horvat
@zoran-horvat 20 күн бұрын
@@andrewshirley9240 There is a great misconception about functional types where many programmers believe they are somehow less powerful than OOP classes. The truth is that those two concepts are orthogonal. While all FP consumers would fail to compile when a new type variant is added, the same stands for subclasses when the new method is added to the base class. The reason why FP is so practical today is that business applications require frequent addition of functions, but not new variants of existing types. That is precisely what hurts in object-oriented design.
@robertmrobo8954
@robertmrobo8954 21 күн бұрын
If one feels like writing C# functionally to tee, isn't it better to just go with F#? Golden hammer..? 🤔
@zoran-horvat
@zoran-horvat 21 күн бұрын
Not necessarily, because C# allows you to write part of the domain functionally and the rest object-oriented. It also supports rich procedural syntax, which is useful in performance-critical portions of code. There are many benefits from using C# in design.
@dusanknezevic9072
@dusanknezevic9072 21 күн бұрын
​@zoran-horvat F# allows you to write terse OOP code just like C#. And allows you to write procedural code. Of course there are some hurdles, especially when you need to cast to interface due to Hindley-Milner type inference in F#, but so many hurdles for FP design exist in C# - primarily OOP oriented, no inbuilt mutability, non-exhaustive pattern matching, lack of native discriminated unions (and standard Optional objects, etc.) Given that .NET is polyglot environment, why not use F# for functional design and C# for OOP?
@zoran-horvat
@zoran-horvat 21 күн бұрын
@@dusanknezevic9072 Then there is the inverse question: why not use C#? You cannot mix languages within the same project, so .NET will not help you with that.
@user-oy2bp9bq5m
@user-oy2bp9bq5m 21 күн бұрын
consuming c# libraries, whose are a lot of, from within f# sometimes is hard and not worth the effort
@patfre
@patfre 21 күн бұрын
@@zoran-horvatnot within the same project yeah but you can have two projects one for each that can work interchangeably (you do have to rebuild for the other project to update but that’s the only issue I know of) however you do need to make sure not to use F# types for stuff the C# project will use or it will get messy but while it can be done I would also not recommend doing so. There’s features in both F# and C# I wish where in the other that would make both a good option for this
@Endomorphism
@Endomorphism 19 күн бұрын
ahhh, just use F#!
@zoran-horvat
@zoran-horvat 19 күн бұрын
Nope.
@user-jr5wc7xf1j
@user-jr5wc7xf1j 16 күн бұрын
when a new author type is added, the formatting function will need to be redone (add a new Func parameter). If there are too many inherited types, your code will turn into noodles.
@zoran-horvat
@zoran-horvat 16 күн бұрын
Now listen to this - it is your words: When a new method is added to the base class, all subclasses will need to be redone (add a new method override). If there are too many inherited methods, your code will turn into noodles. It is genuinely funny how easy it comes to criticize functional design, but fail to see that it is in every respect a mirror image of the object-oriented design. Every strength of one is the weakness of the other, but also - vice versa. I hope you will give this detail a fair portion of thinking before making another comment.
@mathys-dikmans
@mathys-dikmans 4 күн бұрын
@@zoran-horvat Just curious how would you handle the match function when you get new NameTypes? f.e. We need to add support for a middle name, maiden name and a pseudonym(alias)
@zoran-horvat
@zoran-horvat 4 күн бұрын
@@mathys-dikmans Adding new subtypes breaks all functions in functional programming the same way as adding a new method breaks all subclasses in object-oriented programming. The reason why functional programming is gaining so much popularity in recent years lies in understanding that we add new functions much more frequently than new variants in discriminated unions. Therefore, while the problem you are referring to does exist, it is significantly less frequent in practice than the corresponding problem in the design of classes.
How to Avoid Null Reference Exceptions: Optional Objects in C#
18:13
Osman Kalyoncu Sonu Üzücü Saddest Videos Dream Engine 118 #shorts
00:30
Conforto para a barriga de grávida 🤔💡
00:10
Polar em português
Рет қаралды 90 МЛН
Разбудила маму🙀@KOTVITSKY TG:👉🏼great_hustle
00:11
МишАня
Рет қаралды 3,1 МЛН
Do you have a friend like this? 🤣#shorts
00:12
dednahype
Рет қаралды 10 МЛН
17 Pieces of C# Syntax That Make Your Code Short
12:41
Zoran Horvat
Рет қаралды 16 М.
C#, Dapper & SQL: Interview Questions With Answers
17:53
Zoran Horvat
Рет қаралды 4,1 М.
How I re-created the rhythm game osu! from scratch in C++!
5:51
Omer Hasanov
Рет қаралды 22 М.
5 Rules For DTOs
17:56
Ardalis
Рет қаралды 35 М.
Let C# Tuples Become Your Best Friends
11:51
Zoran Horvat
Рет қаралды 8 М.
"Stop Using Async Await in .NET to Save Threads" | Code Cop #018
14:05
Swagger is Going Away in .NET 9!
10:48
Nick Chapsas
Рет қаралды 64 М.
Готовый миниПК от Intel (но от китайцев)
36:25
Ремонтяш
Рет қаралды 426 М.
СЛОМАЛСЯ ПК ЗА 2000$🤬
0:59
Корнеич
Рет қаралды 2,5 МЛН
How Neuralink Works 🧠
0:28
Zack D. Films
Рет қаралды 30 МЛН