You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use models from Graph as DTOs, which almost works well until you have a look at some of the base properties...
I don't even need those properties, but now i get generated code like
staticfromJS(data: any,_mappings?: any): IBackingStore|null{data=typeofdata==='object' ? data : {};thrownewError("The abstract class 'IBackingStore' cannot be instantiated.");}
I get the problem partially, but it's blocking me so much, that i'd need to change the whole structure of my project so i want to either:
make them go away and just serialize to any or so,
delete all properties with interface types also from serialization/deserialization
if there'd be any generic solution that'd be nice.
The text was updated successfully, but these errors were encountered:
I'm trying to use models from Graph as DTOs, which almost works well until you have a look at some of the base properties...
I don't even need those properties, but now i get generated code like
I get the problem partially, but it's blocking me so much, that i'd need to change the whole structure of my project so i want to either:
if there'd be any generic solution that'd be nice.
The text was updated successfully, but these errors were encountered: