Twin types - properties synchronization without inheritance

栏目: IT技术 · 发布时间: 3年前

内容简介:A couple of months ago I’ve started working on a simpleOne of the first problems that I came across was that I had a lot of types that looked very similar but had some differences and served different purposes, like:Those types require synchronization - wh
Twin types - properties synchronization without inheritance

A couple of months ago I’ve started working on a simple CRUD service. A mix of ASP Core for REST API with Dapper for Database access - probably one of the most popular stacks for this kind of application. Very quickly it turned out that it’s more complex than I expected and this “simple-boring” CRUD became more interesting and challenging.

One of the first problems that I came across was that I had a lot of types that looked very similar but had some differences and served different purposes, like:

  • DBO - Data Base Object - types for mapping SQL query result to C# object.
  • DTO ( Data Transfer Object ) for the read side - quite similar to DBO but very often has a more complex shape, aggregates results from more than one DBO, contains additional metadata or pre-formatted data.
  • DTO ( Data Transfer Object ) for the write side - similar to this one of the read side but without metadata required for UI and without read-only fields.

Those types require synchronization - when I add a new field to DBO , then it’s very likely that I need to add its counterpart to both types of DTO as well (or at least to one of them). Similar situation in case of field renaming - it’s an obvious expectation to keep the names consistent across all those types. This causes a need for some sort of mechanism that could help enforce that synchronization somehow automatically. The first thing that comes to mind is inheritance but it has some significant downsides:

  • It introduces direct dependencies between types that we would like to avoid. It could be very strange that DTO inherits from DBO or the other way around.
  • Sometimes types have fields with the same names but different types. This could be solved with generic type parameters, but with a lot of such fields we would end up with a very messy code.

The most important thing about inheritance, that programmers very often forget, is that it was invented to share behaviors, not a code (more precisely a state). Those POCO types have no common behaviors - only similar shapes. We can also try to address this issue by introducing an interface with common fields, but it has similar downsides as inheritance and we end up with an even bigger amount of places that require synchronization. When I add a new field to any of my POCO types, I need to remember to add this field to common interface in order to make this synchronization work - and properties declaration need to be repeated in all types that implement an interface, which results in even more code.

I didn’t find a good solution for this problem using standard C# mechanisms, so I came up with the idea of TwinTypes .

The Solution - Extending C# rules with custom analyzer

Because standard C# mechanisms don’t provide any satisfying solution, I tried once again to take advantage of the Roslyn analyzers and extend language possibilities. The idea of TwinType is to introduce a marker that will express some sort of "soft dependency" between types. The whole solution consists of three parts:

  • [TwinType] attribute to define this "soft dependency" or "shape similarity" with other types.
  • Dedicated Roslyn analyzer that keeps track of related type changes and is able to report missing fields and properties.
  • Additional code fix which can generate code of missing members.

Talk is cheap so let’s see how it works in code:

Twin types - properties synchronization without inheritance

TwinTypeAnalyzer verifies if type decorated with [TwinType] attribute has members (properties and fields) with the same names as the type declared to mimic. Members’ types are ignored so it’s possible to have the same field with different types on both sides. [TwinType] attribute can be applied multiple times on the same type so it’s possible to achieve some sort of mixins or multiple inheritance :

Twin types - properties synchronization without inheritance

It’s also valid to have multiple twin relations with the same type using different name prefixes:

Twin types - properties synchronization without inheritance

To make life a little bit easier I created a dedicated code fix which can generate declarations of those missing members:

Twin types - properties synchronization without inheritance

All attributes and analyzers described here are available as a single Nuget package SmartAnalyzers.CSharpExtensions.Annotations . The source code is published on Github under CSharpExtensions project. Please let me know what you think about those extensions to C# language and if you encounter any problems with using it, feel free to report an issue on Github page.

If you find this blog post useful and you think it's worth to share this idea with others, please don't hesitate to use these buttons below:


以上所述就是小编给大家介绍的《Twin types - properties synchronization without inheritance》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

SQL基础教程

SQL基础教程

MICK / 孙淼、罗勇 / 人民邮电出版社 / 2013-8-1 / CNY 69.00

本书介绍了关系数据库以及用来操作关系数据库的SQL语言的使用方法,提供了大量的示例程序和详实的操作步骤说明,读者可以亲自动手解决具体问题,循序渐进地掌握SQL的基础知识和技巧,切实提高自身的编程能力。在每章结尾备有习题,用来检验读者对该章内容的理解程度。另外本书还将重要知识点总结为“法则”,方便大家随时查阅。 本书适合完全没有或者具备较少编程和系统开发经验的初学者,也可以作为大中专院校的教材......一起来看看 《SQL基础教程》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具