2022-08-27 23:02:46 +03:00
|
|
|
|
2022-08-28 20:00:09 +03:00
|
|
|
public static (bool, {readTypeFullName}) Add{entityTypeName}(
|
|
|
|
this {contextFullName} dbContext, {createTypeFullName} {toCreateVarName}) {
|
|
|
|
var {newEntityVarName} = new {entityTypeFullName}({toCreateVarName});
|
|
|
|
dbContext.{propertyName}.Add({newEntityVarName});
|
|
|
|
var success = dbContext.SaveChanges() >= 0;
|
|
|
|
return (success, new {readTypeFullName}({newEntityVarName}));
|
|
|
|
}
|